From a52c7c6a369d5b7b2713613d22ea1beebf3d53ac Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Tue, 21 Jul 2020 13:15:10 +0700 Subject: [PATCH] Attempt to get qrcode dep installed --- stage2/06-connection-details/01-run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stage2/06-connection-details/01-run.sh b/stage2/06-connection-details/01-run.sh index 0772fb1..a3633f3 100755 --- a/stage2/06-connection-details/01-run.sh +++ b/stage2/06-connection-details/01-run.sh @@ -5,8 +5,9 @@ echo "Installing connection-details and dependencies" cp files/Pipfile* ${ROOTFS_DIR}/ on_chroot << EOF -PIPENV_PIPFILE="/Pipfile" pipenv --python "$(which python3)" install --system +pip3 install qrcode EOF +# PIPENV_PIPFILE="/Pipfile" pipenv --python "$(which python3)" install --system rm ${ROOTFS_DIR}/Pipfile*