Fix pienv run command by actually adding "run"

This commit is contained in:
Devon Mackay 2018-07-09 12:56:13 -04:00
parent cb0564e3e7
commit a31e833fa4

View File

@ -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 $?
}