Skip to content

Commit

Permalink
Try the 'bootstrap-if-needed' strategy (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rick Pasetto authored Jun 2, 2020
1 parent 3bf1656 commit 12adc63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TidepoolService.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "echo \"Bootstrapping Carthage dependencies...\"\nunset LLVM_TARGET_TRIPLE_SUFFIX\ntime /usr/local/bin/carthage bootstrap --project-directory \"${SRCROOT}\" --platform ios --cache-builds --verbose\n";
shellScript = "echo \"Bootstrapping Carthage dependencies...\"\nunset LLVM_TARGET_TRIPLE_SUFFIX\n\nif ! cmp -s Cartfile.Resolved Carthage/Cartfile.resolved; then\n time /usr/local/bin/carthage bootstrap --project-directory \"$SRCROOT\" --platform ios --cache-builds --verbose\n cp Cartfile.resolved Carthage\nelse\n echo \"Carthage: not bootstrapping\"\nfi\n";
};
A9DAAD5F22E7E75C00E76C9F /* Copy Frameworks with Carthage */ = {
isa = PBXShellScriptBuildPhase;
Expand Down

0 comments on commit 12adc63

Please sign in to comment.