Extending to handle symlink python

v2.0.9 v2.0.9
Nick Vyzas 6 years ago
parent 673c78b63f
commit 60923e24f7

@ -6,7 +6,7 @@ env
echo "==> Dirty patching to ensure OS deps are installed"
if [[ -f "/usr/bin/python" ]];
if [[ -f "/usr/bin/python" ]] || [[ -h "/usr/bin/python" ]];
then
echo "==> Installing dependancies for RHEL compliant version 7"
yum -y install gnutls-devel libtool || true

@ -9,7 +9,7 @@ env
echo "==> Dirty patching to ensure OS deps are installed"
if [[ -f "/usr/bin/python" ]];
if [[ -f "/usr/bin/python" ]] || [[ -h "/usr/bin/python" ]];
then
echo "==> Installing dependancies for RHEL compliant version 7"
yum -y install gnutls-devel libtool || true

Loading…
Cancel
Save