Full path to python requirements check (#11982)

This commit is contained in:
Tony Murray 2020-07-30 15:29:16 -05:00 committed by GitHub
parent 04e7afe9ed
commit 52e61490f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ check_dependencies() {
local ver_71=$(php -r "echo (int)version_compare(PHP_VERSION, '7.1.3', '<');")
local ver_72=$(php -r "echo (int)version_compare(PHP_VERSION, '7.2.5', '<');")
local python3=$(python3 -c "import sys;print(int(sys.version_info < (3, 4)))" 2> /dev/null)
local python_deps=$(scripts/check_requirements.py > /dev/null 2>&1; echo $?)
local python_deps=$("${LIBRENMS_DIR}/scripts/check_requirements.py" > /dev/null 2>&1; echo $?)
local phpver="master"
local pythonver="master"