diff --git a/src/flutter/build.sh b/src/flutter/build.sh index 0c079b1..527f496 100644 --- a/src/flutter/build.sh +++ b/src/flutter/build.sh @@ -92,12 +92,6 @@ while [[ $# -gt 0 ]]; do shift shift ;; - --dart) - # Specifies the path to the dart binary - DART=$2 - shift - shift - ;; *) echo "Unknown argument: $1" shift @@ -120,7 +114,6 @@ SKIP_BUILD=${SKIP_BUILD:-n} NOTIFY_SEND=${NOTIFY_SEND:-notify-send} SEND_NOTIFICATION=${SEND_NOTIFICATION:-y} FLUTTER=${FLUTTER:-flutter} -DART=${DART:-flutter} # Parse version info version=$(grep -E "^version: " pubspec.yaml | cut -b 10-) @@ -133,7 +126,6 @@ echo "===== ${NAME} =====" echo "Building version ${version}" echo "Moving APKs into ${release_dir} after build" echo "Flutter: ${FLUTTER}" -echo "Dart: ${DART}" echo "Clean build: ${CLEAN_BUILD}" echo "Pigeons to build: ${PIGEON_FILES}" echo "Skipping build: ${SKIP_BUILD}" @@ -180,7 +172,7 @@ else # Build pigeons for pigeon in $PIGEON_FILES; do - $DART run pigeon --input $pigeon + $FLUTTER run pigeon --input $pigeon done # Build the release apk