Skip to content

Commit

Permalink
Fixing spaces in paths
Browse files Browse the repository at this point in the history
  • Loading branch information
abdelaziz-mahdy authored Apr 16, 2024
1 parent 0810e7b commit 8c99be1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ class AppPackageMakerDmg extends AppPackageMaker {
.first;

try {
await $('cp', ['-RH', appFile.path, packagingDirectory.path]);

await $('cp', ['-RH', 'macos/packaging/dmg/.', packagingDirectory.path]);

await $('cp', ['-RH', '"${appFile.path}"', '"${packagingDirectory.path}"']);
await $('cp', ['-RH', 'macos/packaging/dmg/.', '"${packagingDirectory.path}"']);
File makeDmgConfigJsonFile = File(
'${packagingDirectory.path}/make_config.json',
);
Expand Down

0 comments on commit 8c99be1

Please sign in to comment.