From c2cfa99cc8bde9a243780e735344adf7b0faa8f5 Mon Sep 17 00:00:00 2001 From: Yury Delendik Date: Mon, 27 Aug 2012 14:23:42 -0500 Subject: [PATCH] Fixing new make.js lint errors --- make.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make.js b/make.js index 4c58545dd..7299bbf3c 100755 --- a/make.js +++ b/make.js @@ -618,7 +618,7 @@ target.chrome = function() { }); // If there was no chrome entry in the browser manifest, exit - if(!executable) { + if (!executable) { echo('There was no \'chrome\' entry in the browser manifest'); exit(1); } @@ -629,7 +629,7 @@ target.chrome = function() { } // If the chrome executable doesn't exist - if(!test('-f', executable)) { + if (!test('-f', executable)) { echo('Incorrect executable path to chrome'); exit(1); }