From d8dd9de81b93514feae47767a3dfda93832ab2b4 Mon Sep 17 00:00:00 2001 From: Johann Schleier-Smith Date: Tue, 9 Aug 2016 13:43:25 -0700 Subject: [PATCH] remove verbose flag in tar (#363) --- test/travis-ci/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/travis-ci/install.sh b/test/travis-ci/install.sh index b6fb5d472..a0bcde980 100755 --- a/test/travis-ci/install.sh +++ b/test/travis-ci/install.sh @@ -15,7 +15,7 @@ if [[ $TRAVIS_OS_NAME == 'linux' ]]; then docker version # We tar the current checkout, then include it in the Docker image - tar --exclude './docker' -cv . > ./docker/test-base/ray.tar + tar --exclude './docker' -c . > ./docker/test-base/ray.tar docker build --no-cache -t amplab/ray:test-base docker/test-base rm ./docker/test-base/ray.tar docker build --no-cache -t amplab/ray:test-examples docker/test-examples