You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by da...@apache.org on 2015/06/21 15:14:15 UTC

[19/24] git commit: updated refs/heads/master to 6fd49e4

Allow proper retry in pip install command

Signed-off-by: Daan Hoogland <da...@onecht.net>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/e4f09e9e
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/e4f09e9e
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/e4f09e9e

Branch: refs/heads/master
Commit: e4f09e9ebcaaa5984a9679d8f8f98ca383f6224e
Parents: 5386e0f
Author: Rafael da Fonseca <rs...@gmail.com>
Authored: Sat Jun 20 02:06:13 2015 +0200
Committer: Daan Hoogland <da...@onecht.net>
Committed: Sun Jun 21 15:13:27 2015 +0200

----------------------------------------------------------------------
 tools/travis/before_install.sh | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e4f09e9e/tools/travis/before_install.sh
----------------------------------------------------------------------
diff --git a/tools/travis/before_install.sh b/tools/travis/before_install.sh
index 95c0d3e..e9bcb33 100755
--- a/tools/travis/before_install.sh
+++ b/tools/travis/before_install.sh
@@ -82,8 +82,7 @@ echo -e "\nInstalling some python packages: "
 
 for ((i=0;i<$RETRY_COUNT;i++))
 do
-  sudo pip install lxml texttable > /tmp/piplog
-  sudo pip install --upgrade paramiko >> /tmp/piplog
+  sudo pip install --upgrade lxml texttable paramiko > /tmp/piplog
   if [[ $? -eq 0 ]]; then
     echo -e "\npython packages installed successfully"
     break;