We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 168768a commit a8257fdCopy full SHA for a8257fd
scripts/sync_versin.dart scripts/version_sync.dartscripts/sync_versin.dart renamed to scripts/version_sync.dart
@@ -12,10 +12,6 @@ void main() {
12
final pubspec = loadYaml(pubspecContent);
13
14
final version = pubspec['version'] as String;
15
- if (version == null) {
16
- print('Version not found in pubspec.yaml');
17
- exit(1);
18
- }
19
20
final versionParts = version.split('+');
21
if (versionParts.length != 2) {
@@ -25,6 +21,7 @@ void main() {
25
26
22
final versionName = versionParts[0];
27
23
final versionCode = versionParts[1];
24
+ print("$versionParts");
28
29
updateAndroidVersion(versionName, versionCode);
30
// updateIOSVersion(versionName, versionCode);
0 commit comments