[Setup] Fix syntax error

This commit is contained in:
Admin 2025-05-22 16:47:46 +02:00
parent 3541ec68e7
commit 6b1c8dec58

2
setup
View File

@ -39,7 +39,7 @@ platform=$(echo "$platform" | tr '[:upper:]' '[:lower:]')
# Get user preference for regenerating the styling
regen=""
read -p "Would you like to regenerate styling? (y/N) " regen
if [ $regen == "y" ]; then
if [[ "$regen" == "y" ]]; then
cd build
node build.js
if [ $? -ne 0 ]; then