This is an automated email from the ASF dual-hosted git repository.
dgrove pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-release.git
The following commit(s) were added to refs/heads/master by this push:
new 6b7529c Fix the issue to install jq and expect in Travis (#240)
6b7529c is described below
commit 6b7529cf95ef7a45b5af373b4012c8e3674ab78d
Author: Vincent <[email protected]>
AuthorDate: Wed Dec 5 17:14:29 2018 -0500
Fix the issue to install jq and expect in Travis (#240)
We need to run apt-get update before installing all the packages.
---
tools/install_dependencies.sh | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/install_dependencies.sh b/tools/install_dependencies.sh
index eeab195..243e583 100755
--- a/tools/install_dependencies.sh
+++ b/tools/install_dependencies.sh
@@ -33,6 +33,7 @@ elif [ $sysOS == "Linux" ];then
fi
if [ $DISTRO == "Ubuntu" ];then
echo "This is Ubuntu."
+ sudo apt-get update
sudo apt-get install jq gnupg expect wget
fi
else