diff --git a/script/include/bootstrap_functions.inc.sh b/script/include/bootstrap_functions.inc.sh index 33e22bf8..599fc207 100644 --- a/script/include/bootstrap_functions.inc.sh +++ b/script/include/bootstrap_functions.inc.sh @@ -2,6 +2,7 @@ install_python_packages() { local install_flags="${1}" + pipenv install ${install_flags} return $? } diff --git a/script/include/helper_functions.inc.sh b/script/include/helper_functions.inc.sh index 96218f9a..e24594c2 100644 --- a/script/include/helper_functions.inc.sh +++ b/script/include/helper_functions.inc.sh @@ -14,6 +14,7 @@ check_system_pip_for () { # Used whenever an environment sensitive command is being run run_command () { local cmd="${1}" + pipenv run ${cmd} return $? }