mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 13:48:50 +00:00
vscode: fix chmod to octal literal
Co-Authored-By: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
parent
d08ae7e82f
commit
a3e3fba7bf
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue