We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e9105d commit dfb2fa8Copy full SHA for dfb2fa8
1 file changed
scripts/carthage-build-workaround.sh
100644
100755
@@ -2,7 +2,11 @@
2
# Usage example: ./carthage-build.sh --platform iOS
3
4
set -euo pipefail
5
-cd ..
+
6
+cd .. # apollo-ios
7
+cd .. # Checkouts
8
+cd .. # Carthage
9
+cd .. # your project
10
11
xcconfig=$(mktemp /tmp/static.xcconfig.XXXXXX)
12
trap 'rm -f "$xcconfig"' INT TERM HUP EXIT
@@ -25,4 +29,4 @@ echo 'EXCLUDED_ARCHS = $(inherited) $(EXCLUDED_ARCHS__EFFECTIVE_PLATFORM_SUFFIX_
25
29
26
30
export XCODE_XCCONFIG_FILE="$xcconfig"
27
31
echo $XCODE_XCCONFIG_FILE
28
-carthage update "$@"
32
+carthage update
0 commit comments