Skip to content

Commit

Permalink
Use "double quotes" around the binding file name
Browse files Browse the repository at this point in the history
Also, do not add additional spaces.
  • Loading branch information
saper committed Apr 19, 2016
1 parent 99ea434 commit 4f420a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build.js
Expand Up @@ -41,7 +41,7 @@ function afterBuild(options) {
return;
}

console.log('Installed in `', install, '`');
console.log('Installed in "' + install + '"');
});
});
});
Expand Down Expand Up @@ -200,7 +200,7 @@ function testBinary(options) {
return build(options);
}

console.log('`', sass.getBinaryPath(), '` exists.', eol, 'testing binary.');
console.log('"' + sass.getBinaryPath() + '" exists.', eol, 'testing binary.');

try {
require('../').renderSync({
Expand Down

0 comments on commit 4f420a5

Please sign in to comment.