mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 04:55:22 +03:00
vscode: fix chmod to octal literal
Co-Authored-By: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user