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
22 lines
573 B
Bash
22 lines
573 B
Bash
echo "exporting $url (r$rev) into $out"
|
|
|
|
if test -n "$http_proxy"; then
|
|
# Configure proxy
|
|
mkdir .subversion
|
|
proxy="${http_proxy#*://}"
|
|
|
|
echo '[global]' > .subversion/servers
|
|
echo "http-proxy-host = ${proxy%:*}" >> .subversion/servers
|
|
echo "http-proxy-port = ${proxy##*:}" >> .subversion/servers
|
|
|
|
export HOME="$PWD"
|
|
fi;
|
|
|
|
if test -z "$LC_ALL"; then
|
|
export LC_ALL="en_US.UTF-8"
|
|
fi;
|
|
|
|
svn export --trust-server-cert --non-interactive \
|
|
${ignoreExternals:+--ignore-externals} ${ignoreKeywords:+--ignore-keywords} \
|
|
-r "$rev" "$url" "$out"
|