Skip to content

Commit

Permalink
fix #181
Browse files Browse the repository at this point in the history
  • Loading branch information
YehudaKremer committed May 31, 2023
1 parent da83b16 commit c7153aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 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.13.3

- fix [#181](https://github.com/YehudaKremer/msix/issues/181)

## 3.13.2

- get certificate publisher if using test certificate (fix [#159](https://github.com/YehudaKremer/msix/issues/159))
Expand Down
2 changes: 1 addition & 1 deletion lib/src/sign_tool.dart
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class SignTool {

Future<String> _getInstalledCertificateSubject(String searchCondition) async {
ProcessResult certificateDetailsProcess = await _executePowershellCommand(
"dir -Recurse cert: | where {$searchCondition} | select -expandproperty Subject -First 1");
"\$env:PSModulePath = [Environment]::GetEnvironmentVariable('PSModulePath', 'Machine');dir -Recurse cert: | where {$searchCondition} | select -expandproperty Subject -First 1");

String subject = (certificateDetailsProcess.stdout as String).trim();

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.2
version: 3.13.3
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 c7153aa

Please sign in to comment.