diff options
-rw-r--r-- | editors/code/src/installation/language_server.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/installation/language_server.ts b/editors/code/src/installation/language_server.ts index d09fc63a7..ea1228e46 100644 --- a/editors/code/src/installation/language_server.ts +++ b/editors/code/src/installation/language_server.ts | |||
@@ -48,7 +48,7 @@ export async function downloadLatestLanguageServer( | |||
48 | } | 48 | } |
49 | ); | 49 | ); |
50 | 50 | ||
51 | await fs.chmod(installationPath, 755); // Set (rwx, r_x, r_x) permissions | 51 | await fs.chmod(installationPath, 0o755); // Set (rwx, r_x, r_x) permissions |
52 | } | 52 | } |
53 | export async function ensureLanguageServerBinary( | 53 | export async function ensureLanguageServerBinary( |
54 | langServerSource: null | BinarySource | 54 | langServerSource: null | BinarySource |