Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
framctr committed Sep 14, 2024
1 parent 6c0b998 commit 4d63bbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ansible/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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!'

0 comments on commit 4d63bbe

Please sign in to comment.