Skip to content

Commit

Permalink
ci: also try pip without --break-system-packages
Browse files Browse the repository at this point in the history
We have different versions there.
  • Loading branch information
q66 committed May 6, 2024
1 parent 682873e commit fea681b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/install-env
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ else
fi

if [ -n "$(command -v pip3)" ]; then
sudo pip3 install --break-system-packages meson || exit 1
sudo pip3 install --break-system-packages meson || sudo pip3 install meson || exit 1
elif [ -n "$(command -v pip)" ]; then
sudo pip install --break-system-packages meson || exit 1
sudo pip install --break-system-packages meson || sudo pip install meson || exit 1
else
echo "ERROR: pip not found"
exit 1
Expand Down

0 comments on commit fea681b

Please sign in to comment.