fix: strip rc suffix from iOS marketing version

pull/28741/head
bo0tzz 2026-06-01 12:54:44 +02:00
parent 2382894fa2
commit 309bf7a352
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ def get_version_from_pubspec
pubspec = YAML.load_file(pubspec_path)
version_string = pubspec['version']
version_string ? version_string.split('+').first : nil
version_string ? version_string.split('+').first.split('-').first : nil
end
# Helper method to configure code signing for all targets