Skip to content

Commit

Permalink
remove powershell file
Browse files Browse the repository at this point in the history
  • Loading branch information
YehudaKremer committed Feb 14, 2022
1 parent ebbfef5 commit ecdcb83
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
Binary file not shown.
1 change: 0 additions & 1 deletion lib/assets/testCertificateInstaller/installCertificate.ps1

This file was deleted.

Binary file not shown.
10 changes: 7 additions & 3 deletions lib/src/assets.dart
Original file line number Diff line number Diff line change
Expand Up @@ -317,10 +317,14 @@ class Assets {
Isolate.exit(port);
}

/// Copy an .exe test-certificate installer to the build folder
/// Copy an .exe test-certificate file to the build folder
Future<void> addTestCertificateInstaller() async {
await Directory('${_config.msixAssetsPath}/testCertificateInstaller')
.copyDirectory(Directory(_config.buildFilesFolder));
String certificateName = 'test_certificate.pfx',
certificateInstallerName = 'InstallTestCertificate.exe';
await File('${_config.msixAssetsPath}/$certificateName')
.copy('${_config.buildFilesFolder}/$certificateName');
await File('${_config.msixAssetsPath}/$certificateInstallerName')
.copy('${_config.buildFilesFolder}/$certificateInstallerName');
}
}

Expand Down

0 comments on commit ecdcb83

Please sign in to comment.