Merge commit '10ad57cc6b73b9ed51474edbd5235e6b5f2fd16b'

pull/1572/head
Roman Perepelitsa 3 years ago
commit e362b69735

@ -275,12 +275,16 @@ if [ ! -e "$libgit2_tarball" ]; then
fi fi
fi fi
libgit2_url=https://github.com/romkatv/libgit2/archive/"$libgit2_version".tar.gz libgit2_url=https://github.com/romkatv/libgit2/archive/"$libgit2_version".tar.gz
if ! command wget -O "$libgit2_tmp" -- "$libgit2_url"; then if ! >"$libgit2_tmp" command wget --no-config -qO- -- "$libgit2_url" &&
command which wget ! >"$libgit2_tmp" command wget -qO- -- "$libgit2_url"; then
command ls -lAd -- "$outdir" set -x
command ls -lA -- "$outdir" >&2 command which wget
command ls -lAd -- "$outdir"/deps >&2 command ls -lAd -- "$(command which wget)"
command ls -lA -- "$outdir"/deps >&2 command ls -lAd -- "$outdir"
>&2 command ls -lA -- "$outdir"
>&2 command ls -lAd -- "$outdir"/deps
>&2 command ls -lA -- "$outdir"/deps
set +x
exit 1 exit 1
fi fi
command mv -f -- "$libgit2_tmp" "$libgit2_tarball" command mv -f -- "$libgit2_tmp" "$libgit2_tarball"

Loading…
Cancel
Save