diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-12-11 19:06:16 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-12-11 19:06:20 -0800 |
commit | 094ab67d23e89d2eedf05c66f7bd876730dce7b9 (patch) | |
tree | 571878e709a579c6de89bce240d9907c402a44bd /scripts/windows-container | |
parent | 779e33be5d394347ddf1d30dfde4e5621fe40578 (diff) | |
download | subsurface-094ab67d23e89d2eedf05c66f7bd876730dce7b9.tar.gz |
Travis: fix the windows-container build
Call apt update before trying to install things.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts/windows-container')
-rw-r--r-- | scripts/windows-container/before_install.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/windows-container/before_install.sh b/scripts/windows-container/before_install.sh index bcfcf761a..b0d0e5f13 100644 --- a/scripts/windows-container/before_install.sh +++ b/scripts/windows-container/before_install.sh @@ -38,6 +38,7 @@ docker run -v $PWD/win32:/win/win32 -v $PWD/subsurface:/win/subsurface --name=bu # for some reason this package was installed but still isn't there? # hmmmm. The container doesn't seem to have libtool installed +docker exec -t builder apt-get update docker exec -t builder apt-get install -y ca-certificates libtool # now set up our other dependencies |