From 44cb066d9410b7986a1f5252a583791f2fa87231 Mon Sep 17 00:00:00 2001 From: LizBaldo Date: Wed, 28 Aug 2024 10:58:49 -0400 Subject: [PATCH] make sure arguments are passed to bash script --- build_all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_all.sh b/build_all.sh index db22942d..16a96043 100755 --- a/build_all.sh +++ b/build_all.sh @@ -17,8 +17,8 @@ images=(terra-jupyter-base terra-jupyter-python terra-jupyter-r terra-jupyter-ga # Loop over each image to build in the correct order for image in images; do # Call build.sh with the image to build - echo 'Building and publishing the following image to GCR: $image' - ./build.sh "$image" "true" + echo "Building and publishing the following image to GCR: $image" + ./build.sh $image true done # Once all images have been built, generate and push the 'terra-docker-versions-new' doc