Refactor push-images (#39)

This commit is contained in:
G r e y 2020-12-16 16:28:05 -05:00 committed by GitHub
parent ed0a191a8b
commit 99c358179d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -1,9 +1,6 @@
#!/usr/bin/env bash
set -euo pipefail
# Some images need to build before others, everything else can go in any order
ORDERED_IMAGES=("base" "multieditor")
function main() {
# Move to top level
pushd $(git rev-parse --show-toplevel)
@ -23,7 +20,7 @@ function main() {
# Pop back to original dir
popd
echo "Successfully built all images"
echo "Successfully pushed all images"
}
main