Commit 4f420a55 by Marcin Cieślak

Use "double quotes" around the binding file name

Also, do not add additional spaces.
parent 99ea4346
...@@ -41,7 +41,7 @@ function afterBuild(options) { ...@@ -41,7 +41,7 @@ function afterBuild(options) {
return; return;
} }
console.log('Installed in `', install, '`'); console.log('Installed in "' + install + '"');
}); });
}); });
}); });
...@@ -200,7 +200,7 @@ function testBinary(options) { ...@@ -200,7 +200,7 @@ function testBinary(options) {
return build(options); return build(options);
} }
console.log('`', sass.getBinaryPath(), '` exists.', eol, 'testing binary.'); console.log('"' + sass.getBinaryPath() + '" exists.', eol, 'testing binary.');
try { try {
require('../').renderSync({ require('../').renderSync({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment