From 4d63bbe8a7f9ace18b1a9bc1f21987e18e36ea80 Mon Sep 17 00:00:00 2001 From: framctr <35109437+framctr@users.noreply.github.com> Date: Sat, 14 Sep 2024 07:43:33 +0000 Subject: [PATCH] Fix typo --- src/ansible/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ansible/install.sh b/src/ansible/install.sh index 5a03c8f..ca694b7 100644 --- a/src/ansible/install.sh +++ b/src/ansible/install.sh @@ -17,9 +17,9 @@ $nanolayer_location install apt-get pip,python3-dev EXT_MANAGED_PY=$(pip install --help | grep -o '\-\-break-system-packages' | cat) # cat prevents grep to exit with error if not matching if [ "$VERSION" != "latest" ] ; then - pip install "$EXT_MANAGED_PY" "${PACKAGE}"=="${VERSION}" + pip install $EXT_MANAGED_PY "${PACKAGE}"=="${VERSION}" else - pip install "$EXT_MANAGED_PY" "$PACKAGE" + pip install $EXT_MANAGED_PY "$PACKAGE" fi echo 'Done!'