浏览代码

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 7 年之前
父节点
当前提交
2137e866b9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      contrib/mkimage-alpine.sh

+ 1 - 1
contrib/mkimage-alpine.sh

@@ -43,7 +43,7 @@ pack() {
 	id=$(tar --numeric-owner -C $ROOTFS -c . | docker import - alpine:$REL)
 
 	docker tag $id alpine:latest
-	docker run -i -t --rm alpine printf 'alpine:%s with id=%s created!\n' $REL $id
+	docker run --rm alpine printf 'alpine:%s with id=%s created!\n' $REL $id
 }
 
 save() {