Remove --dart

This commit is contained in:
PapaTutuWawa 2024-10-03 18:30:53 +02:00
parent 8e98e366f7
commit 4d69a65f9a

View File

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