We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a457995 commit f8819dfCopy full SHA for f8819df
script/setup/install-imgcrypt
@@ -23,9 +23,10 @@ set -eu -o pipefail
23
script_dir="$(cd -- "$(dirname -- "$0")" > /dev/null 2>&1; pwd -P)"
24
25
: "${IMGCRYPT_VERSION:=$(cat "${script_dir}/imgcrypt-version")}"
26
+: "${IMGCRYPT_REPO:=https://github.com/containerd/imgcrypt.git}" # Default repo
27
28
TMPROOT=$(mktemp -d)
-git clone https://github.com/containerd/imgcrypt.git "${TMPROOT}"/imgcrypt
29
+git clone "${IMGCRYPT_REPO}" "${TMPROOT}"/imgcrypt
30
pushd "${TMPROOT}"/imgcrypt
31
git checkout "${IMGCRYPT_VERSION}"
32
make
0 commit comments