Skip to content

Commit

Permalink
make sure arguments are passed to bash script
Browse files Browse the repository at this point in the history
  • Loading branch information
LizBaldo committed Aug 28, 2024
1 parent 187a81a commit 44cb066
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 44cb066

Please sign in to comment.