Browse Source

script.build.linux: Do not tail image build logs

Signed-off-by: Christopher Crone <[email protected]>
Christopher Crone 6 years ago
parent
commit
3fc5c6f563
1 changed files with 1 additions and 1 deletions
  1. 1 1
      script/build/linux

+ 1 - 1
script/build/linux

@@ -5,7 +5,7 @@ set -ex
 ./script/clean
 
 TAG="docker-compose"
-docker build -t "$TAG" . | tail -n 200
+docker build -t "$TAG" .
 docker run \
     --rm --entrypoint="script/build/linux-entrypoint" \
     -v $(pwd)/dist:/code/dist \