From a31e833fa43e136d83373e479c58f6c3ac3e3d57 Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Mon, 9 Jul 2018 12:56:13 -0400 Subject: [PATCH] Fix pienv run command by actually adding "run" --- script/include/helper_functions.inc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/include/helper_functions.inc.sh b/script/include/helper_functions.inc.sh index 57415ba1..96218f9a 100644 --- a/script/include/helper_functions.inc.sh +++ b/script/include/helper_functions.inc.sh @@ -14,6 +14,6 @@ check_system_pip_for () { # Used whenever an environment sensitive command is being run run_command () { local cmd="${1}" - pipenv ${cmd} + pipenv run ${cmd} return $? }