Skip to content

Commit

Permalink
build: run swiftlint as strict
Browse files Browse the repository at this point in the history
  • Loading branch information
David Skuza committed Apr 4, 2023
1 parent 371bdbc commit 3b387e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pocket.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "export PATH=\"$PATH:/opt/homebrew/bin\"\n\nif which swiftlint > /dev/null; then\n if [ \"$CONFIGURATION\" = 'Debug' ]; then\n swiftlint\n else \n echo \"Skipping swift lint because it is not a local developer build.\"\n fi \nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
shellScript = "export PATH=\"$PATH:/opt/homebrew/bin\"\n\nif which swiftlint > /dev/null; then\n if [ \"$CONFIGURATION\" = 'Debug' ]; then\n swiftlint --strict\n else \n echo \"Skipping swift lint because it is not a local developer build.\"\n fi \nelse\n echo \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi\n";
};
/* End PBXShellScriptBuildPhase section */

Expand Down

0 comments on commit 3b387e3

Please sign in to comment.