From dfe4cd5d54d523d029c66ec8b2d61f7c2fa317c1 Mon Sep 17 00:00:00 2001 From: Josh W Lewis Date: Fri, 9 Aug 2024 09:24:33 -0500 Subject: [PATCH] Fix bash arguments --- bin/generate-runtime-images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/generate-runtime-images.sh b/bin/generate-runtime-images.sh index a25c93a3..eabe7453 100755 --- a/bin/generate-runtime-images.sh +++ b/bin/generate-runtime-images.sh @@ -6,4 +6,4 @@ STACK_VERSION="${1:-"NAN"}" [[ $STACK_VERSION =~ ^[0-9]+$ ]] || (abort "fatal: invalid STACK_VERSION") sudo cp tools/bin/* /usr/local/bin -sudo -E convert-to-heroku-stack-image "heroku-${STACK_VERSION}" +sudo -E convert-to-heroku-stack-image "${STACK_VERSION}"