diff options
author | baude <bbaude@redhat.com> | 2017-11-08 15:14:33 -0600 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2017-11-15 16:27:57 -0600 |
commit | acd9c668647d273488772bfcb06a0f1a44dfb411 (patch) | |
tree | 5ff634e00c700b16f1ae4369df4ea021a4888073 /Makefile | |
parent | 5cfd7a313fcae7c748b5bae84de779b28d4ea01b (diff) | |
download | podman-acd9c668647d273488772bfcb06a0f1a44dfb411.tar.gz podman-acd9c668647d273488772bfcb06a0f1a44dfb411.tar.bz2 podman-acd9c668647d273488772bfcb06a0f1a44dfb411.zip |
Fix terminal attach
Re-order the startup of a new container via run from
initialize > start > attach to initialize > attach > start.
This fixes output when running:
kpod run -i -t IMAGE command
and
kpod run IMAGE command
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -112,7 +112,7 @@ testunit: $(GO) test -tags "$(BUILDTAGS)" -cover $(PACKAGES) localintegration: test-binaries - ./test/test_runner.sh ${TESTFLAGS} + bash -i ./test/test_runner.sh ${TESTFLAGS} binaries: conmon kpod |