scripts: fix if statement in local.sh

This commit is contained in:
tfuxu 2023-03-06 00:39:37 +01:00
parent ef706ebeae
commit ce242698a2
No known key found for this signature in database
GPG key ID: 79CFC3B9B31C098A

View file

@ -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