Skip to content

Commit

Permalink
fix Skip the signing step #105
Browse files Browse the repository at this point in the history
  • Loading branch information
YehudaKremer committed Feb 19, 2022
1 parent 2968260 commit 49ed615
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/msix.dart
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class Msix {
await _assets.cleanTemporaryFiles(clearMsixFiles: true);
await _assets.createIcons();
await _assets.copyVCLibsFiles();
if (!_config.store) {
if (_config.signMsix && !_config.store) {
await _signTool.getCertificatePublisher();
}
await AppxManifest(_config, _logger).generateAppxManifest();
Expand Down

0 comments on commit 49ed615

Please sign in to comment.