Skip to content

Commit c2cfa99

Browse files
committed
Fixing new make.js lint errors
1 parent 8ccbba4 commit c2cfa99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ target.chrome = function() {
618618
});
619619

620620
// If there was no chrome entry in the browser manifest, exit
621-
if(!executable) {
621+
if (!executable) {
622622
echo('There was no \'chrome\' entry in the browser manifest');
623623
exit(1);
624624
}
@@ -629,7 +629,7 @@ target.chrome = function() {
629629
}
630630

631631
// If the chrome executable doesn't exist
632-
if(!test('-f', executable)) {
632+
if (!test('-f', executable)) {
633633
echo('Incorrect executable path to chrome');
634634
exit(1);
635635
}

0 commit comments

Comments
 (0)