From 991ade8f4db3c7e5eb38628b021547aca68da820 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Fernando=20S=C3=A1nchez?= Date: Mon, 12 Jun 2017 21:20:07 +0200 Subject: [PATCH] Make sdist non-interactive non-tty --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0b2680e..3e9780b 100644 --- a/Makefile +++ b/Makefile @@ -76,8 +76,8 @@ test-%: test: test-$(PYMAIN) dist/$(TARNAME): version - docker run --rm -ti -v $$PWD:/usr/src/app/ -w /usr/src/app/ python:$(PYMAIN) python setup.py sdist; - docker run --rm -ti -v $$PWD:/usr/src/app/ -w /usr/src/app/ python:$(PYMAIN) chmod -R a+rwx dist; + docker run --rm -v $$PWD:/usr/src/app/ -w /usr/src/app/ python:$(PYMAIN) python setup.py sdist; + docker run --rm -v $$PWD:/usr/src/app/ -w /usr/src/app/ python:$(PYMAIN) chmod -R a+rwx dist; sdist: dist/$(TARNAME)