From 71dab2ae6ab0ac3a6f44d522d2e96c51b235dce2 Mon Sep 17 00:00:00 2001 From: th33xitus Date: Fri, 1 Apr 2022 18:40:57 +0200 Subject: [PATCH] refactor(klipper.sh): calling pip Signed-off-by: Dominik Willner th33xitus@gmail.com --- scripts/klipper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/klipper.sh b/scripts/klipper.sh index b78fcac..f307c64 100644 --- a/scripts/klipper.sh +++ b/scripts/klipper.sh @@ -322,7 +322,7 @@ function update_klipper(){ ### read PKGLIST and install possible new dependencies install_klipper_packages ### install possible new python dependencies - "${KLIPPY_ENV}"/bin/pip install -r "${KLIPPER_DIR}/scripts/klippy-requirements.txt" + /bin/bash "${KLIPPY_ENV}/bin/pip" install -r "${KLIPPER_DIR}/scripts/klippy-requirements.txt" fi update_log_paths "klipper" ok_msg "Update complete!"