diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-03-15 07:01:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-15 07:01:37 -0700 |
commit | a73814cc6778c08b187e248219d5cfc8fb57b182 (patch) | |
tree | 78df47c6ba407fd06edac7b0f29f6e710026a824 /test | |
parent | e16cdf711f82353be521e1a2867da1bf73829269 (diff) | |
parent | fc65d71df2c95105d02316f369837a84fa4df0cb (diff) | |
download | podman-a73814cc6778c08b187e248219d5cfc8fb57b182.tar.gz podman-a73814cc6778c08b187e248219d5cfc8fb57b182.tar.bz2 podman-a73814cc6778c08b187e248219d5cfc8fb57b182.zip |
Merge pull request #2646 from giuseppe/fix-build-order
build: fix build DIR -t TAG
Diffstat (limited to 'test')
-rw-r--r-- | test/test_podman_build.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/test_podman_build.sh b/test/test_podman_build.sh index 9faefc78a..39f1e784d 100644 --- a/test/test_podman_build.sh +++ b/test/test_podman_build.sh @@ -34,6 +34,13 @@ echo ######################################################## echo ######################################################## +echo test "build directory before other options create a tag" +echo ######################################################## +TARGET=tagged-image +podman build $HOME/test/build/from-scratch --quiet=True -t $TARGET +podman images | grep tagged-image + +echo ######################################################## echo test "build-preserve-subvolumes" echo ######################################################## TARGET=volume-image |