From 09d07e4890cb9e88f065e2068b063d3051051361 Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Tue, 20 Aug 2019 11:34:26 +0200 Subject: [PATCH] removing TTY flag from lint and tests commands --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 401c7088..f09e7c3b 100644 --- a/Makefile +++ b/Makefile @@ -32,13 +32,13 @@ fmt: lint: make workspace docker build --build-arg GOLANGCI_LINT_VERSION=$(GOLANGCI_LINT_VERSION) -t $(DOCKER_REPOSITORY)/gotenberg:lint -f build/lint/Dockerfile . - docker run --rm -it $(DOCKER_REPOSITORY)/gotenberg:lint + docker run --rm $(DOCKER_REPOSITORY)/gotenberg:lint # run all tests. tests: make workspace docker build -t $(DOCKER_REPOSITORY)/gotenberg:tests -f build/tests/Dockerfile . - docker run --rm -it $(DOCKER_REPOSITORY)/gotenberg:tests + docker run --rm $(DOCKER_REPOSITORY)/gotenberg:tests # generate documentation. doc: