aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVeetaha <[email protected]>2020-02-09 10:54:51 +0000
committerGitHub <[email protected]>2020-02-09 10:54:51 +0000
commita3e3fba7bf9cbaa51d39ecfd2b111472fdbf4cb3 (patch)
tree9075797445b2740ffb212d1f6996db1c3eec1d17
parentd08ae7e82f9eb4abb92f1274ea361acb21fd7b87 (diff)
vscode: fix chmod to octal literal
Co-Authored-By: Aleksey Kladov <[email protected]>
-rw-r--r--editors/code/src/installation/language_server.ts2
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}
53export async function ensureLanguageServerBinary( 53export async function ensureLanguageServerBinary(
54 langServerSource: null | BinarySource 54 langServerSource: null | BinarySource