Skip to content

Commit

Permalink
ci: fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
tagoh committed Jun 24, 2024
1 parent 7b4a7e6 commit 4cdfa97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fontquery/scripts/fontquery-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ DIST="${DIST:-}"
detect_pip() {
PIP=""
if [ -x "$(command -v pip)" ]; then
echo "** pip is available"
echo "** pip is available" >& 2
PIP="$(command -v pip)"
elif [ -x "$(command -v pip3)" ]; then
echo "** pip3 is available"
echo "** pip3 is available" >& 2
PIP="$(command -v pip3)"
elif [ -x "$(command -v pip3.11)" ]; then
echo "** pip3.11 is available"
echo "** pip3.11 is available" >& 2
PIP="$(command -v pip3.11)"
fi
if [ -z "$PIP" ]; then
Expand Down

0 comments on commit 4cdfa97

Please sign in to comment.