From c7bd1f0a8774dbb21081e27eff24379dd3e0ebed Mon Sep 17 00:00:00 2001 From: probablycorey Date: Thu, 13 Feb 2014 10:03:44 -0800 Subject: [PATCH] Use string because it is easier to read --- src/command-installer.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command-installer.coffee b/src/command-installer.coffee index 5308e5a8e..e59dbd05c 100644 --- a/src/command-installer.coffee +++ b/src/command-installer.coffee @@ -18,7 +18,7 @@ symlinkCommand = (sourcePath, destinationPath, callback) -> if error? callback(error) else - fs.chmod(destinationPath, 0o755, callback) + fs.chmod(destinationPath, '755', callback) symlinkCommandWithPrivilegeSync = (sourcePath, destinationPath) -> if runas('/bin/rm', ['-f', destinationPath], admin: true) != 0