From 8dad24d37540e2378dd0e6712d2883e9739343ec Mon Sep 17 00:00:00 2001 From: Gulshan Singh Date: Sat, 24 Feb 2024 21:16:25 -0800 Subject: [PATCH] Allow customizing qemu image download URL from command line (#2031) --- tests/qemu-tests/download_images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/qemu-tests/download_images.sh b/tests/qemu-tests/download_images.sh index 686d0b782..867f2e9aa 100755 --- a/tests/qemu-tests/download_images.sh +++ b/tests/qemu-tests/download_images.sh @@ -4,7 +4,7 @@ set -o errexit CWD=$(dirname -- "$0") OUT_DIR="${CWD}/images" -URL="https://github.com/pwndbg/linux-exploit-dev-env/releases/latest/download" +URL=${URL:-"https://github.com/pwndbg/linux-exploit-dev-env/releases/latest/download"} mkdir -p "${OUT_DIR}"