Skip to content

Commit 1caf440

Browse files
committed
Remove appimagebuilder from set version
1 parent 6c0faf4 commit 1caf440

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

tools/set_version.dart

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ Future<void> main(List<String> args) async {
5959
'Updating the version in the pubspec.yaml from $lastVersion to $newVersion',
6060
);
6161

62-
await updateAppImageVersion(version);
6362
await updateDebianVersion(version);
6463
if (results['changelog']) {
6564
var changelogFile = File('metadata/en-US/changelogs/$newBuildNumber.txt');
@@ -71,15 +70,6 @@ Future<void> main(List<String> args) async {
7170
print('Successfully updated!');
7271
}
7372

74-
Future<void> updateAppImageVersion(String version) async {
75-
var file = File('app/AppImageBuilder.yml');
76-
var lines = await file.readAsLines();
77-
lines[13] = ' version: $version';
78-
lines.add('');
79-
await file.writeAsString(lines.join('\r\n'));
80-
print('Successfully updated app image version to $version');
81-
}
82-
8373
Future<void> updateDebianVersion(String version) async {
8474
var file = File('app/linux/debian/DEBIAN/control');
8575
var lines = await file.readAsLines();

0 commit comments

Comments
 (0)