diff --git a/local.sh b/local.sh index 73a23ba5..9db5f03b 100755 --- a/local.sh +++ b/local.sh @@ -20,9 +20,9 @@ read -p "Do you want to install Python requirements? [N/y] " answer -if [[ "$answer" == "yes" ]]; then +if [[ "$answer" == "y" ]]; then pip3 install -r requirements.txt -elif [[ "$answer" == "no" ]]; then +elif [[ "$answer" == "n" || "$answer" == "" ]]; then echo "Skipping requirements installation" fi