Skip to content

Commit

Permalink
fix #175
Browse files Browse the repository at this point in the history
  • Loading branch information
YehudaKremer committed May 12, 2023
1 parent 4c25972 commit 8016025
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 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.12.1

- fix [#175](https://github.com/YehudaKremer/msix/issues/175): `app_installer -> publish_folder_path` config field is now support absolute-path

## 3.12.0

- fix [#193](https://github.com/YehudaKremer/msix/issues/193): remove `isolate` to support Flutter version >=3.10.0 (Dart 3v)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

---

##### 📢**Important**: For Flutter version `>=3.10.0`, you need to use Msix package version `>=3.12.0`
#### 📢 **Important**: For Flutter version `>=3.10.0`, you need to use Msix package version `>=3.12.0`

---

Expand Down
5 changes: 4 additions & 1 deletion lib/src/configuration.dart
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,10 @@ class Configuration {
_logger.trace('validating app installer config values');

if (publishFolderPath.isNullOrEmpty ||
!await Directory(publishFolderPath!).exists()) {
(!await Directory(publishFolderPath!).exists() &&
!await Directory(publishFolderPath =
'${Directory.current.path}\\${publishFolderPath!}')
.exists())) {
_logger.stderr(
'publish folder path is not exists, check "app_installer: publish_folder_path" at pubspec.yaml'
.red);
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.12.0
version: 3.12.1
maintainer: Yehuda Kremer (yehudakremer@gmail.com)
homepage: https://github.com/YehudaKremer/msix
issue_tracker: https://github.com/YehudaKremer/msix/issues
Expand Down

0 comments on commit 8016025

Please sign in to comment.