mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +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(
|
export async function ensureLanguageServerBinary(
|
||||||
langServerSource: null | BinarySource
|
langServerSource: null | BinarySource
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue