From 7c8410ab86ffa9f81419664dcfa01f573772ba0e Mon Sep 17 00:00:00 2001 From: Leif Date: Mon, 17 Feb 2025 09:41:11 -0900 Subject: [PATCH] Update wgd.sh update msleep for longer timeout, and move that var to the top to make it more obvious --- src/wgd.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wgd.sh b/src/wgd.sh index 98e4bac..45891eb 100755 --- a/src/wgd.sh +++ b/src/wgd.sh @@ -15,6 +15,8 @@ heavy_checkmark=$(printf "\xE2\x9C\x85") heavy_crossmark=$(printf "\xE2\x9D\x8C") install=$(printf "\xF0\x9F\x92\xBF") +msleep=15 + PID_FILE=./gunicorn.pid environment=$(if [[ $ENVIRONMENT ]]; then echo $ENVIRONMENT; else echo 'develop'; fi) if [[ $CONFIGURATION_PATH ]]; then @@ -291,7 +293,6 @@ _determinePypiMirror(){ done min_idx=$((min_idx - 1)) - msleep=5 printf "\n" printf " Which mirror you would like to use (Hit enter or wait ${msleep} seconds to use default: ${urls[$min_idx]}): " read -t ${msleep} -r choice