From 676cba9638955c167ceb998229dda29180aa2907 Mon Sep 17 00:00:00 2001 From: "M. Eric Irrgang" Date: Thu, 14 May 2020 11:24:09 +0300 Subject: [PATCH] Minor clean up to buildall.sh A commented line indicates the script has occasionally been written for overly aggressive action and is frequently modified in place, sometimes resulting in accidental commits of disabled commands. This change lets the script simply provide copy-pasteable commands for the user to run at their discretion. --- admin/containers/buildall.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/containers/buildall.sh b/admin/containers/buildall.sh index afc2b71662..b2d16b1e0a 100644 --- a/admin/containers/buildall.sh +++ b/admin/containers/buildall.sh @@ -90,8 +90,8 @@ tag=gromacs/ci-docs-gcc:master tags[${#tags[@]}]=$tag python3 $SCRIPT --gcc --doxygen | docker build -t $tag - -docker login +echo "Run the following to upload the updated images." +echo docker login for tag in "${tags[@]}"; do - echo "Pushing $tag" - #docker push $tag + echo docker push $tag done -- 2.11.4.GIT