Skip to content

Commit 1f2d2da

Browse files
committed
Restored full file permission validation for all compilers in Linux/macOS
1 parent f7f7bfc commit 1f2d2da

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ The following enhancements and changes have been made to Atari Dev Studio:
44

55
## 0.11.7
66

7-
* Added stowatch timer for batari Basic and 7800basic build compilation
7+
* Restored file permission validation for Linux & macOS regardless of whether using included or custom compilers (just in case)
8+
* Added stopwatch timer for batari Basic and 7800basic build compilation
89

910
## 0.11.6
1011

out/compilers/compilerBase.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

out/compilers/compilerBase.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/compilers/compilerBase.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ export abstract class CompilerBase implements vscode.Disposable {
241241
console.log('debugger:CompilerBase.RepairFilePermissionsAsync');
242242

243243
// Validate
244-
if (this.CustomFolderOrPath || application.IsWindows) return true;
244+
if (application.IsWindows) return true;
245245

246246
// Process
247247
application.WriteToCompilerTerminal(`Verifying file permissions...`);

0 commit comments

Comments
 (0)