Browse code

Removed the "-i -t" arguments from the smoke test calling printf (these flags seem not really needed, and break jenkins builds with error "the input device is not a TTY") Signed-off-by: Mickaël Remars <github@remars.com>

Mickaël Remars authored on 2018/07/06 00:26:09
Showing 1 changed files
... ...
@@ -43,7 +43,7 @@ pack() {
43 43
 	id=$(tar --numeric-owner -C $ROOTFS -c . | docker import - alpine:$REL)
44 44
 
45 45
 	docker tag $id alpine:latest
46
-	docker run -i -t --rm alpine printf 'alpine:%s with id=%s created!\n' $REL $id
46
+	docker run --rm alpine printf 'alpine:%s with id=%s created!\n' $REL $id
47 47
 }
48 48
 
49 49
 save() {