Skip to content

Commit 3c671d3

Browse files
committed
Fixed Travis CI yml File to not use "-f" for apt-get install anymore
1 parent 1258f53 commit 3c671d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ script:
2323
before_install:
2424
# make sure GCC is installed
2525
- sudo apt-get -q -y autoclean
26-
- sudo apt-get -q -y -f update
27-
- sudo apt-get -q -y -f install
28-
- sudo apt-get -q -y -f install gcc binutils-mingw-w64-i686 gcc-mingw-w64-i686
26+
- sudo apt-get -q -y update
27+
- sudo apt-get -q -y install
28+
- sudo apt-get -q -y install gcc binutils-mingw-w64-i686 gcc-mingw-w64-i686
2929
# fix for buffer overflows in getLocalHostName
3030
# https://github.com/travis-ci/travis-ci/issues/5227
3131
- cat /etc/hosts # optionally check the content *before*

0 commit comments

Comments
 (0)