From 348292a2752a02530835dcee541e55b838f00067 Mon Sep 17 00:00:00 2001 From: Matt Loberg Date: Fri, 13 Oct 2023 08:55:10 -0500 Subject: [PATCH] feat(scripts): run awscli install with passed arguments We have a rootless image we want to install awscli on, which requires setting bin-dir and a couple other options. --- scripts/awscli.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/awscli.sh b/scripts/awscli.sh index 20d5bb6..9d041c7 100755 --- a/scripts/awscli.sh +++ b/scripts/awscli.sh @@ -16,7 +16,7 @@ fi curl -s "https://awscli.amazonaws.com/awscli-exe-linux-$(uname -m)-${AWSCLI_VERSION}.zip" -o /tmp/awscliv2.zip unzip -q -d /tmp /tmp/awscliv2.zip -/tmp/aws/install +/tmp/aws/install "$@" rm -rf /tmp/aws /tmp/awscliv2 /tmp/awscliv2.zip if [ "$missing" != "" ]; then