Skip to content

Commit 9ddc74f

Browse files
committed
Use apt-get in non-silent mode
1 parent b901058 commit 9ddc74f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.travis.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ matrix:
1818

1919
install:
2020
- if [ "$EMACS" = "emacs23" ]; then
21-
sudo apt-get update -qq &&
22-
sudo apt-get install -qq --no-install-suggests --no-install-recommends --force-yes emacs23-nox;
21+
sudo apt-get update &&
22+
sudo apt-get install --no-install-suggests --no-install-recommends --assume-yes emacs23-nox;
2323
fi
2424
- if [ "$EMACS" = "emacs24" ]; then
25-
sudo apt-get update -qq &&
26-
sudo apt-get install -qq --no-install-suggests --no-install-recommends --force-yes emacs24-nox;
25+
sudo apt-get update &&
26+
sudo apt-get install --no-install-suggests --no-install-recommends --assume-yes emacs24-nox;
2727
fi
2828
- if [ "$EMACS" = "emacs-snapshot" ]; then
2929
sudo add-apt-repository -y ppa:ubuntu-elisp/ppa &&
30-
sudo apt-get update -qq &&
31-
sudo apt-get install -qq --no-install-suggests --no-install-recommends --force-yes emacs-snapshot;
30+
sudo apt-get update &&
31+
sudo apt-get install --no-install-suggests --no-install-recommends --assume-yes emacs-snapshot;
3232
fi
3333
- if [ "$TARGET" = "deploy-manual" ]; then
34-
sudo apt-get update -qq &&
35-
sudo apt-get install -qq --no-install-suggests --no-install-recommends --force-yes texinfo;
34+
sudo apt-get update &&
35+
sudo apt-get install --no-install-suggests --no-install-recommends --force-yes texinfo;
3636
fi
3737

3838
script:

0 commit comments

Comments
 (0)