We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e75b3c commit 2bbeac8Copy full SHA for 2bbeac8
scripts/bootstrap-if-needed.sh
@@ -11,7 +11,7 @@ checksum_file="Carthage/cartSum.txt"
11
# Computes current Carthage checksum using 'Cartfile.resolved' file, Swift version and checksum version.
12
computeChecksum() {
13
local version="1"
14
- { cat Cartfile.resolved; xcrun swift -version; echo "${version}" } | md5
+ { cat Cartfile.resolved; xcrun swift -version; echo "${version}"; } | md5
15
}
16
17
# Get previous checksum
@@ -20,7 +20,7 @@ touch "${checksum_file}"
20
if [ ! -f "${checksum_file}" ]; then
21
prevSum="null";
22
else
23
- prevSum=`computeChecksum`;
+ prevSum=`cat Carthage/cartSum.txt`;
24
fi
25
26
# Get checksum
0 commit comments