python3 not python

This commit is contained in:
Jay Lee
2019-10-14 14:45:00 -04:00
parent f24d403705
commit ac3c156a0b

View File

@@ -10,7 +10,7 @@ else
export LD_LIBRARY_PATH=~/ssl/lib:~/python/lib
SSLVER=$(~/ssl/bin/openssl version)
SSLRESULT=$?
PYVER=$(~/python/bin/python -V)
PYVER=$(~/python/bin/python3 -V)
PYRESULT=$?
if [[ "$SSLRESULT" != "0" ]] || [[ "$SSLVER" != *"$BUILD_OPENSSL_VERSION"* ]] || [[ "$PYRESULT" != "0" ]] || [[ "$PYVER" != *"$PYTHON_BUILD_VERSION"* ]]; then
echo "RUNNING: apt update..."