File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
contrib/containers/guix/scripts Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1111
1212if [[ -z " ${HOSTS} " || " ${HOSTS} " == * " darwin" * ]]; then
1313 export SDK_PATH=" ${SDK_PATH:- ${WORKSPACE_PATH} / depends/ SDKs} "
14- export SDK_SRCS =" ${SDK_PATH :- ${WORKSPACE_PATH} / depends/ sdk-sources} "
14+ export SDK_SOURCES =" ${SDK_SOURCES :- ${WORKSPACE_PATH} / depends/ sdk-sources} "
1515
1616 ./contrib/containers/guix/scripts/setup-sdk
1717fi
Original file line number Diff line number Diff line change @@ -9,16 +9,16 @@ set -eo pipefail
99
1010SDK_URL=" ${SDK_URL:- https:// bitcoincore.org/ depends-sources/ sdks} "
1111SDK_PATH=" ${SDK_PATH:- depends/ SDKs} "
12- SDK_SRCS =" ${SDK_SOURCES:- depends/ sdk-sources} "
12+ SDK_SOURCES =" ${SDK_SOURCES:- depends/ sdk-sources} "
1313XCODE_VERSION=" ${XCODE_VERSION:- 15.0} "
1414XCODE_RELEASE=" ${XCODE_RELEASE:- 15A240d} "
1515XCODE_ARCHIVE=" Xcode-${XCODE_VERSION} -${XCODE_RELEASE} -extracted-SDK-with-libcxx-headers"
16- XCODE_AR_PATH=" ${SDK_SRCS } /${XCODE_ARCHIVE} .tar.gz"
16+ XCODE_AR_PATH=" ${SDK_SOURCES } /${XCODE_ARCHIVE} .tar.gz"
1717
1818if [ ! -d " ${SDK_PATH} /${XCODE_ARCHIVE} " ]; then
1919 if [ ! -f " ${XCODE_AR_PATH} " ]; then
2020 echo " Downloading macOS SDK..."
21- mkdir -p " ${SDK_SRCS } "
21+ mkdir -p " ${SDK_SOURCES } "
2222 curl --location --fail " ${SDK_URL} /${XCODE_ARCHIVE} .tar.gz" -o " ${XCODE_AR_PATH} "
2323 fi
2424 echo " Extracting macOS SDK..."
You can’t perform that action at this time.
0 commit comments