forked from firka/student-legacy
13 lines
297 B
Bash
13 lines
297 B
Bash
#!/usr/bin/env fish
|
|
|
|
# With build number
|
|
function get_version_bn
|
|
cat pubspec.yaml | grep version: | cut -d' ' -f2
|
|
end
|
|
|
|
function get_version
|
|
cat pubspec.yaml | grep version: | cut -d' ' -f2 | cut -d+ -f1
|
|
end
|
|
|
|
flutter build ipa --release --dart-define=APPVER=(get_version) --no-tree-shake-icons
|