From 4cdfa977ee459c046c20c1f8081a4b9aca24200e Mon Sep 17 00:00:00 2001 From: Akira TAGOH Date: Mon, 24 Jun 2024 15:03:17 +0900 Subject: [PATCH] ci: fix error --- fontquery/scripts/fontquery-setup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fontquery/scripts/fontquery-setup.sh b/fontquery/scripts/fontquery-setup.sh index 1d69081..c351024 100755 --- a/fontquery/scripts/fontquery-setup.sh +++ b/fontquery/scripts/fontquery-setup.sh @@ -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