vscode: fix chmod to octal literal

Co-Authored-By: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
Veetaha 2020-02-09 12:54:51 +02:00 committed by GitHub
parent d08ae7e82f
commit a3e3fba7bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@ export async function downloadLatestLanguageServer(
}
);
await fs.chmod(installationPath, 755); // Set (rwx, r_x, r_x) permissions
await fs.chmod(installationPath, 0o755); // Set (rwx, r_x, r_x) permissions
}
export async function ensureLanguageServerBinary(
langServerSource: null | BinarySource