Skip to content

Commit dc48c4d

Browse files
committed
(travis) apt-get quite
1 parent 1c9637f commit dc48c4d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

scripts/travis/install-deps.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
BASEDIR=$(dirname $0)
66
source $BASEDIR/defaults.sh
77

8-
apt-get -y update
9-
apt-get install -y --no-install-recommends \
8+
apt-get -yq update
9+
apt-get install -yq --no-install-recommends \
1010
build-essential \
1111
graphviz \
1212
libboost-filesystem-dev \
@@ -23,17 +23,17 @@ apt-get install -y --no-install-recommends \
2323
wget
2424

2525
if $WITH_CMAKE ; then
26-
apt-get install -y --no-install-recommends cmake
26+
apt-get install -yq --no-install-recommends cmake
2727
fi
2828

2929
# Python3
30-
apt-get install -y --no-install-recommends \
30+
apt-get install -yq --no-install-recommends \
3131
python3-dev \
3232
python3-numpy \
3333
python3-skimage
3434

3535
if $WITH_IO ; then
36-
apt-get install -y --no-install-recommends \
36+
apt-get install -yq --no-install-recommends \
3737
libleveldb-dev \
3838
liblmdb-dev \
3939
libopencv-dev \
@@ -54,7 +54,7 @@ if $WITH_CUDA ; then
5454
fi
5555

5656
# update package lists
57-
apt-get -y update
57+
apt-get -yq update
5858

5959
# install packages
6060
CUDA_PKG_VERSION="7-5"
@@ -68,7 +68,7 @@ if $WITH_CUDA ; then
6868
ln -s /usr/local/cuda-$CUDA_VERSION /usr/local/cuda
6969

7070
if $WITH_CUDNN ; then
71-
apt-get install -y --no-install-recommends libcudnn7-dev
71+
apt-get install -yq --no-install-recommends libcudnn7-dev
7272
fi
7373
fi
7474

0 commit comments

Comments
 (0)