From 1548676f56ae2b380ed3dc64003257e3de372fee Mon Sep 17 00:00:00 2001 From: Saebekassebil Date: Sun, 26 Aug 2012 13:23:26 +0200 Subject: [PATCH] Use manual join instead of path.join --- make.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.js b/make.js index 5090bfc3c..8283e79af 100755 --- a/make.js +++ b/make.js @@ -607,7 +607,7 @@ target.chrome = function() { // If we're on a Darwin (Mac) OS, then let's check for an .app path if (process.platform === 'darwin' && executable.indexOf('.app') !== -1) { - executable = path.join(executable, 'Contents', 'MacOS', 'Google Chrome'); + executable = executable + '/Contents/MacOS/Google Chrome'); } // If the chrome executable doesn't exist