From f607b8abfbdc39b8936e935606e4ced28368bd14 Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 16 Aug 2023 18:22:52 +0200 Subject: [PATCH] Silence pip download --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 84f804021..5f116c0e9 100755 --- a/setup.sh +++ b/setup.sh @@ -11,7 +11,7 @@ function check_installed_pip() { ${PYTHON} -m pip > /dev/null if [ $? -ne 0 ]; then echo_block "Installing Pip for ${PYTHON}" - curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py + curl https://bootstrap.pypa.io/get-pip.py -s -o get-pip.py ${PYTHON} get-pip.py rm get-pip.py fi