Skip to content

Commit

Permalink
cleaner log in #201
Browse files Browse the repository at this point in the history
  • Loading branch information
YehudaKremer committed Jun 1, 2023
1 parent ce8e3b9 commit 2dfddb8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 3.14.0

- fix [#201](https://github.com/YehudaKremer/msix/issues/201): use correct flutter executable (support [fvm](https://fvm.app/))

## 3.13.3

- fix [#181](https://github.com/YehudaKremer/msix/issues/181)
Expand Down
8 changes: 5 additions & 3 deletions lib/src/windows_build.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@ class WindowsBuild {
'flutter',
]);

final Progress loggerProgress = _logger
.progress('running ""$flutterPath" ${flutterArgs.join(' ')}"');
final Progress loggerProgress =
_logger.progress('running "flutter ${flutterArgs.join(' ')}"');

_logger.trace('build windows files with the command: ' +
'"$flutterPath ${flutterArgs.join(' ')}"');

// ignore: avoid_single_cascade_in_expression_statements
await Process.run(flutterPath, flutterArgs, runInShell: true)
..exitOnError();

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: msix
description: A command-line tool that create Msix installer from your flutter windows-build files.
version: 3.13.3
version: 3.14.0
maintainer: Yehuda Kremer ([email protected])
homepage: https://github.com/YehudaKremer/msix
issue_tracker: https://github.com/YehudaKremer/msix/issues
Expand Down

0 comments on commit 2dfddb8

Please sign in to comment.