Skip to content

Commit

Permalink
chore: Log when preparing macOS SDK or adding safe.directory option
Browse files Browse the repository at this point in the history
  • Loading branch information
UdjinM6 committed Nov 12, 2024
1 parent 3ac5739 commit 74489dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion contrib/containers/guix/scripts/guix-start
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@ export SDK_PATH="${SDK_PATH:-${WORKSPACE_PATH}/depends/SDKs}"

# Check if macOS SDK is present, if not, download it
if [[ ! -d "${SDK_PATH}/${XCODE_ARCHIVE}" ]]; then
echo "Preparing macOS SDK..."
mkdir -p "${SDK_PATH}"
curl -L https://bitcoincore.org/depends-sources/sdks/${XCODE_ARCHIVE}.tar.gz | tar -xz -C "${SDK_PATH}"
fi

# Add safe.directory option only when WORKSPACE_PATH was specified via cmd-line arguments (happens in CI)
if [[ -n "${1}" ]]; then
# Avoid adding duplicates
git config --global --fixed-value --get safe.directory "${WORKSPACE_PATH}" || git config --global --add safe.directory "${WORKSPACE_PATH}"
git config --global --fixed-value --get safe.directory "${WORKSPACE_PATH}" || \
(echo "Adding safe.directory" && git config --global --add safe.directory "${WORKSPACE_PATH}")
fi

cd "${WORKSPACE_PATH}"
Expand Down

0 comments on commit 74489dc

Please sign in to comment.