Skip to content

Commit f523858

Browse files
committed
More comments.
1 parent b665af4 commit f523858

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

compile-git-with-openssl.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,13 @@ done
2323

2424
# Use the specified build directory, or create a unique temporary directory
2525
BUILDDIR=${BUILDDIR:-$(mktemp -d)}
26-
2726
echo "BUILD DIRECTORY USED: ${BUILDDIR}"
2827
mkdir -p "${BUILDDIR}"
2928
cd "${BUILDDIR}"
3029

30+
# Download the source tarball from GitHub
3131
apt update
3232
apt install curl -y
33-
3433
git_tarball_url="https://www.github.com$(curl 'https://github.com/git/git/tags' | grep -o "/git/git/archive/v2\..*\.tar\.gz" | sort -r | head -1 | tr -d '\n')"
3534
echo "DOWNLOADING FROM: ${git_tarball_url}"
3635
curl -L --retry 5 "${git_tarball_url}" --output "git-source.tar.gz"

0 commit comments

Comments
 (0)