Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
28 lines
817 B
Bash
28 lines
817 B
Bash
# tested so far with:
|
|
# - no revision specified and remote has a HEAD which is used
|
|
# - revision specified and remote has a HEAD
|
|
# - revision specified and remote without HEAD
|
|
#
|
|
|
|
echo "exporting $url (rev $rev) into $out"
|
|
|
|
runHook preFetch
|
|
|
|
if [ -n "$gitConfigFile" ]; then
|
|
echo "using GIT_CONFIG_GLOBAL=$gitConfigFile"
|
|
export GIT_CONFIG_GLOBAL="$gitConfigFile"
|
|
fi
|
|
|
|
$SHELL $fetcher --builder --url "$url" --out "$out" --rev "$rev" --name "$name" \
|
|
${leaveDotGit:+--leave-dotGit} \
|
|
${fetchLFS:+--fetch-lfs} \
|
|
${deepClone:+--deepClone} \
|
|
${fetchSubmodules:+--fetch-submodules} \
|
|
${fetchTags:+--fetch-tags} \
|
|
${sparseCheckout:+--sparse-checkout "$sparseCheckout"} \
|
|
${nonConeMode:+--non-cone-mode} \
|
|
${branchName:+--branch-name "$branchName"} \
|
|
${rootDir:+--root-dir "$rootDir"}
|
|
|
|
runHook postFetch
|