summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordevcurmudgeon <paul.sherwood@codethink.co.uk>2016-10-13 12:34:28 +0000
committerdevcurmudgeon <paul.sherwood@codethink.co.uk>2016-10-13 12:34:28 +0000
commit57ae2754c566749a07b9aaa3faff8cd885c929fa (patch)
tree900c340caed9353e33aed47720a51b016add8c77
parent3cdf9bdec6a9aaf6f4e45f4818e641880e23d268 (diff)
parenta7a8f41a5f5f84bf97467040af33c89f46a9db4e (diff)
downloadybd-57ae2754c566749a07b9aaa3faff8cd885c929fa.tar.gz
Merge branch 'james/chmod_pip' into 'master'
Make get-pip executable Allows you to actually run the get-pip script See merge request !251
-rwxr-xr-xinstall_dependencies.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/install_dependencies.sh b/install_dependencies.sh
index d82637c..f5ed44a 100755
--- a/install_dependencies.sh
+++ b/install_dependencies.sh
@@ -81,6 +81,7 @@ fi
pip --version 2>&1 > /dev/null
if [ $? -ne 0 ]; then
wget https://bootstrap.pypa.io/get-pip.py
+ chmod +x get-pip.py
$SUDO ./get-pip.py
$SUDO rm get-pip.py
fi