Skip to content

Commit 8a0e04b

Browse files
committed
print umask
1 parent 2153c6e commit 8a0e04b

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

packages/compass-smoke-tests/src/installers/mac-dmg.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ export function installMacDMG({
1515

1616
execute('hdiutil', ['attach', filepath]);
1717

18+
execute('umask', []);
19+
1820
try {
1921
fs.cpSync(path.resolve(volumePath, appFilename), appPath, {
2022
recursive: true,

packages/compass-smoke-tests/src/installers/mac-zip.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ export function installMacZIP({
1212
const appFilename = `${appName}.app`;
1313
const appPath = path.resolve(destinationPath, appFilename);
1414

15+
execute('umask', []);
16+
1517
execute('ditto', ['-xk', filepath, destinationPath]);
1618

1719
// TODO: Consider instrumenting the app to use a settings directory in the sandbox

0 commit comments

Comments
 (0)