From 2dded9fe13e314007866f092f0c73e10f0ac0441 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Tue, 28 Nov 2023 13:43:29 +0300 Subject: [PATCH] fixup --- vault-github/run.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vault-github/run.sh b/vault-github/run.sh index 3e94817..dc50d5b 100644 --- a/vault-github/run.sh +++ b/vault-github/run.sh @@ -9,11 +9,11 @@ fetch() { dest="$1" url="$2" if command -v curl; then - curl -sSL --fail "$url" -o "$dest" + curl -sSL --fail "$${url}" -o "$${dest}" elif command -v wget; then - wget -O "$dest" "$url" + wget -O "$${dest}" "$${url}" elif command -v busybox; then - busybox wget -O "$dest" "$url" + busybox wget -O "$${dest}" "$${url}" else printf "curl, wget, or busybox is not installed. Please install curl or wget in your image.\n" exit 1