summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sherwood <paul.sherwood@codethink.co.uk>2016-10-29 22:30:50 +0100
committerPaul Sherwood <paul.sherwood@codethink.co.uk>2016-10-29 22:30:50 +0100
commita5402984622c2d3ef70d70c0ae77888565106339 (patch)
tree5708d2d51977af4aa7e6274f46ecdb620498b910
parent16f3bbb7543d216a674fdad831dd9509772ecd97 (diff)
downloadybd-a5402984622c2d3ef70d70c0ae77888565106339.tar.gz
Revert "Trap error on any of the pip install commands"
This reverts commit 16f3bbb7543d216a674fdad831dd9509772ecd97.
-rwxr-xr-xinstall_dependencies.sh22
1 files changed, 3 insertions, 19 deletions
diff --git a/install_dependencies.sh b/install_dependencies.sh
index 0cdc76c..8173264 100755
--- a/install_dependencies.sh
+++ b/install_dependencies.sh
@@ -86,22 +86,6 @@ if [ $? -ne 0 ]; then
$SUDO rm get-pip.py
fi
-pythonmodules=(
-"pep8"
-"fs"
-"pyyaml"
-"sandboxlib"
-"requests"
-"jsonschema"
-"bottle"
-"cherrypy"
-"riemann-client")
-
-for module in "${pythonmodules[@]}";
-do
- $SUDO pip install $module
- if [ $? -ne 0 ]; then
- echo "Pip install failed for" $module
- exit 1
- fi
-done
+$SUDO pip install fs pyyaml sandboxlib requests
+$SUDO pip install jsonschema bottle cherrypy riemann-client
+$SUDO pip install pep8