Skip to content

Commit 1548676

Browse files
committed
Use manual join instead of path.join
1 parent b96152b commit 1548676

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

make.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ target.chrome = function() {
607607

608608
// If we're on a Darwin (Mac) OS, then let's check for an .app path
609609
if (process.platform === 'darwin' && executable.indexOf('.app') !== -1) {
610-
executable = path.join(executable, 'Contents', 'MacOS', 'Google Chrome');
610+
executable = executable + '/Contents/MacOS/Google Chrome');
611611
}
612612

613613
// If the chrome executable doesn't exist

0 commit comments

Comments
 (0)