From 00a4f1edab320539d7798a39cae8f735c4d7b5a7 Mon Sep 17 00:00:00 2001 From: Seth Michael Larson Date: Mon, 23 Nov 2020 17:32:35 -0600 Subject: [PATCH] [7.x] Remove -it option from make.sh Docker call Co-authored-by: Seth Michael Larson --- .ci/make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/make.sh b/.ci/make.sh index f68bde59..39e6c9d7 100755 --- a/.ci/make.sh +++ b/.ci/make.sh @@ -8,7 +8,7 @@ BASE_DIR="$( dirname "$BASE_DIR" )" if [[ "$1" == "assemble" ]]; then mkdir -p $BASE_DIR/.ci/output docker build . --tag elastic/elasticsearch-py -f .ci/Dockerfile - docker run --rm -it -v $BASE_DIR/.ci/output:/code/elasticsearch-py/dist \ + docker run --rm -v $BASE_DIR/.ci/output:/code/elasticsearch-py/dist \ elastic/elasticsearch-py \ python /code/elasticsearch-py/utils/build-dists.py $2 exit 0