Skip to content

Commit

Permalink
Handling failure when Python is installed
Browse files Browse the repository at this point in the history
  • Loading branch information
pondix committed Feb 15, 2020
1 parent 4a4b29c commit 673c78b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ then
else
echo "==> Installing dependancies for RHEL compliant version 8"
yum -y install python2 gnutls-devel libtool || true
ln -s /usr/bin/python2.7 /usr/bin/python
ln -s /usr/bin/python2.7 /usr/bin/python || true
fi

echo "==> Cleaning"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ then
else
echo "==> Installing dependancies for RHEL compliant version 8"
yum -y install python2 gnutls-devel libtool || true
ln -s /usr/bin/python2.7 /usr/bin/python
ln -s /usr/bin/python2.7 /usr/bin/python || true
fi

echo "==> Cleaning"
Expand Down

0 comments on commit 673c78b

Please sign in to comment.