Skip to content

Commit 3df8e6b

Browse files
committed
Update chmodSync to 0o755
1 parent 0c7ec77 commit 3df8e6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Azure.Functions.Cli/npm/lib/install.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ https.get(url, function (response) {
5151
.on('close', () => {
5252
installWorkers(installPath)
5353
if (os.platform() === 'linux' || os.platform() === 'darwin') {
54-
fs.chmodSync(`${installPath}/func`, 755);
54+
fs.chmodSync(`${installPath}/func`, 0o755);
5555
}
5656
});
5757
response.pipe(unzipStream);

0 commit comments

Comments
 (0)