Skip to content

Commit

Permalink
clear empty rows in manifest file
Browse files Browse the repository at this point in the history
  • Loading branch information
YehudaKremer committed Mar 8, 2021
1 parent 12b0530 commit 5c574b5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/src/msixFiles.dart
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,9 @@ class MsixFiles {
</Applications>
</Package>''';

//clear empty rows
manifestContent = manifestContent.replaceAll(' \n', '');

try {
await File('${_configuration.buildFilesFolder}\\AppxManifest.xml')
.create()
Expand Down

0 comments on commit 5c574b5

Please sign in to comment.