From adb41337e3f701a502fe0551a96de4d9e7de56b2 Mon Sep 17 00:00:00 2001 From: Devon Mackay Date: Mon, 9 Jul 2018 12:12:53 -0400 Subject: [PATCH] Fix function name which was just changed --- script/include/setup_functions.inc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/include/setup_functions.inc.sh b/script/include/setup_functions.inc.sh index 50b12af3..ea26d23a 100644 --- a/script/include/setup_functions.inc.sh +++ b/script/include/setup_functions.inc.sh @@ -5,7 +5,7 @@ install_pipenv() { # Ensure we are not in a virtual env already if [ -z "${VIRTUAL_ENV+xxxx}" ]; then - if ! check_pip_for pipenv; then + if ! check_system_pip_for pipenv; then # pipenv is not installed, so install it echo "Installing pipenv..." pip install pipenv