Skip to content

Commit

Permalink
docs: Update SwiftLint script for Apple Silicon & ExportOptions.plist
Browse files Browse the repository at this point in the history
  • Loading branch information
tatsuz0u committed Nov 22, 2021
1 parent de4e916 commit 4ebe3ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions EhPanda.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "if which swiftlint >/dev/null; then\n swiftlint\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
shellScript = "if test -d \"/opt/homebrew/bin/\"; then\n PATH=\"/opt/homebrew/bin/:${PATH}\"\nfi\n\nexport PATH\n\nif which swiftlint >/dev/null; then\n swiftlint\nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
/* End PBXShellScriptBuildPhase section */

Expand Down Expand Up @@ -999,7 +999,7 @@
);
PRODUCT_BUNDLE_IDENTIFIER = app.ehpanda.shareExtension;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = Share_Extension_Dev;
PROVISIONING_PROFILE_SPECIFIER = ShareExtension_Dev;
SKIP_INSTALL = YES;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
Expand All @@ -1026,7 +1026,7 @@
);
PRODUCT_BUNDLE_IDENTIFIER = app.ehpanda.shareExtension;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = Share_Extension_Dev;
PROVISIONING_PROFILE_SPECIFIER = ShareExtension_Dev;
SKIP_INSTALL = YES;
SWIFT_EMIT_LOC_STRINGS = YES;
SWIFT_VERSION = 5.0;
Expand Down
4 changes: 2 additions & 2 deletions actions-tool/ExportOptions.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<key>provisioningProfiles</key>
<dict>
<key>app.ehpanda</key>
<string>fdd9077a-47db-4d6d-9e66-e624bf0a6964</string>
<string>3d5b163e-727a-4940-b02f-0a8d71a67478</string>
<key>app.ehpanda.shareExtension</key>
<string>0318f2e8-3415-45dd-a2a7-c02120f9baa7</string>
<string>296348c0-360c-4f21-ba10-1d23cd415177</string>
</dict>
<key>signingCertificate</key>
<string>Apple Distribution</string>
Expand Down

0 comments on commit 4ebe3ec

Please sign in to comment.