From 9689522b4ff06586b1d2acf8a087ef0bb41c067e Mon Sep 17 00:00:00 2001 From: Andy Goldstein Date: Thu, 9 Aug 2018 10:17:25 -0400 Subject: [PATCH] scripts: support building releases without a TTY This allows systems such as Jenkins, which do not provide a TTY, to run scripts/release.sh Signed-off-by: Andy Goldstein --- scripts/release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.sh b/scripts/release.sh index b01b27f8..0956e9b8 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -15,7 +15,7 @@ rm -Rf ${SRC_DIR}/${RELEASE_DIR} mkdir -p ${SRC_DIR}/${RELEASE_DIR} mkdir -p ${OUTPUT_DIR} -docker run -ti -v ${SRC_DIR}:/go/src/github.com/containernetworking/plugins --rm golang:1.10-alpine \ +docker run -v ${SRC_DIR}:/go/src/github.com/containernetworking/plugins --rm golang:1.10-alpine \ /bin/sh -xe -c "\ apk --no-cache add bash tar; cd /go/src/github.com/containernetworking/plugins; umask 0022;