vscode: fix chmod to octal literal
Co-Authored-By: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
parent
d08ae7e82f
commit
a3e3fba7bf
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user