Skip to content

Commit a3e3fba

Browse files
Veetahamatklad
andauthored
vscode: fix chmod to octal literal
Co-Authored-By: Aleksey Kladov <aleksey.kladov@gmail.com>
1 parent d08ae7e commit a3e3fba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/code/src/installation/language_server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export async function downloadLatestLanguageServer(
4848
}
4949
);
5050

51-
await fs.chmod(installationPath, 755); // Set (rwx, r_x, r_x) permissions
51+
await fs.chmod(installationPath, 0o755); // Set (rwx, r_x, r_x) permissions
5252
}
5353
export async function ensureLanguageServerBinary(
5454
langServerSource: null | BinarySource

0 commit comments

Comments
 (0)