Skip to content

Commit

Permalink
#19 stella execute permission for macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
chunkypixel committed Mar 6, 2020
1 parent c251d5c commit b1e16a1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/emulators/stellaEmulator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,9 @@ export class StellaEmulator extends EmulatorBase {

// Process
let result = await filesystem.ChModAsync(this.FolderOrPath);
if (result && application.IsMacOS) { result = await filesystem.ChModAsync(path.join(this.FolderOrPath,`Stella.app/Contents/MacOS/Stella`),"100"); }

// Result
return result;
}
}

0 comments on commit b1e16a1

Please sign in to comment.