Skip to content

Commit 0fe7688

Browse files
committed
Merge pull request #1025 from gracjan/pr-simpler-apt-get
Simpler apt-get
2 parents f14d34b + cd138bb commit 0fe7688

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.travis.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,20 @@ matrix:
1919
install:
2020
- if [ "$EMACS" = "emacs23" ]; then
2121
sudo apt-get update -qq &&
22-
sudo apt-get install -qq emacs23-gtk emacs23-el;
22+
sudo apt-get install -qq --no-install-suggests --no-install-recommends --force-yes emacs23-nox;
2323
fi
2424
- if [ "$EMACS" = "emacs24" ]; then
25-
sudo add-apt-repository -y ppa:cassou/emacs &&
2625
sudo apt-get update -qq &&
27-
sudo apt-get install -qq emacs24 emacs24-el;
26+
sudo apt-get install -qq --no-install-suggests --no-install-recommends --force-yes emacs24-nox;
2827
fi
2928
- if [ "$EMACS" = "emacs-snapshot" ]; then
3029
sudo add-apt-repository -y ppa:ubuntu-elisp/ppa &&
3130
sudo apt-get update -qq &&
32-
sudo apt-get install -qq emacs-snapshot emacs-snapshot-el;
31+
sudo apt-get install -qq --no-install-suggests --no-install-recommends --force-yes emacs-snapshot;
3332
fi
3433
- if [ "$TARGET" = "deploy-manual" ]; then
3534
sudo apt-get update -qq &&
36-
sudo apt-get install -qq texinfo;
35+
sudo apt-get install -qq --no-install-suggests --no-install-recommends --force-yes texinfo;
3736
fi
3837

3938
script:

0 commit comments

Comments
 (0)