Skip to content

Commit

Permalink
refactor: update loadOperatingSystems to use quickget --list-csv
Browse files Browse the repository at this point in the history
- Close #124

`quickemu list_csv` is deprecated and `quickemu --list-csv` provide the same functionality.
  • Loading branch information
flexiondotorg committed Jun 26, 2024
1 parent 0d9b87f commit f0f0203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import 'src/model/version.dart';
import 'src/model/osicons.dart';

Future<List<OperatingSystem>> loadOperatingSystems(bool showUbuntus) async {
var process = await Process.run('quickget', ['list_csv']);
var process = await Process.run('quickget', ['--list-csv']);
var stdout = process.stdout as String;
var output = <OperatingSystem>[];

Expand Down

0 comments on commit f0f0203

Please sign in to comment.