From 888a53f1bae2abc7325d9b81229bdaa504dbdd8d Mon Sep 17 00:00:00 2001 From: Willa Drengwitz Date: Tue, 16 Oct 2018 18:56:05 -0400 Subject: [PATCH] Add apkg repository update before install --- test/support/travisci_deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/support/travisci_deps.sh b/test/support/travisci_deps.sh index 83cc32e..f636bcf 100755 --- a/test/support/travisci_deps.sh +++ b/test/support/travisci_deps.sh @@ -23,10 +23,10 @@ if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then if [[ -z "$TEST_SHELLS" ]]; then needs_zsh=true; fi # finally, we install zsh if needed! - if $needs_zsh ; then + if $needs_zsh; then + sudo apt-get update sudo apt-get install zsh else echo "No deps required." fi - fi