diff --git a/build.sh b/build.sh index 9cfec00..2f9c287 100755 --- a/build.sh +++ b/build.sh @@ -20,13 +20,9 @@ done < .env # Check if device parameter is provided if [ -z "$1" ]; then - echo "Usage: ./build.sh " - echo "Example: ./build.sh chrome" - echo "Example: ./build.sh 'iPhone 15'" - echo "" - echo "Available devices:" - flutter devices - exit 1 + echo "No device specified. Building for web..." + flutter build web "${ARGS[@]}" + exit 0 fi DEVICE_NAME="$1"