From 9861c95f494f84f286cbd32b9a7fe5601d7251ab Mon Sep 17 00:00:00 2001 From: Adeel Date: Wed, 29 Oct 2014 13:52:57 +0200 Subject: [PATCH] Build: Verbose stats. --- build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.js b/build.js index 9457237ba..ed97bc773 100644 --- a/build.js +++ b/build.js @@ -49,7 +49,7 @@ if (!force && !process.env.SKIP_NODE_SASS_TESTS) { mocha.run(function () { // at least 90% of tests should pass if ((total - failures) * 100 / total < 90) { - console.log('Problem with the binary; manual build incoming'); + console.log('Problem with the binary: ' + failures + ' of ' + total + ' tests are failing.\nManual build incoming'); console.log('Please consider contributing the release binary to https://github.com/sass/node-sass-binaries for npm distribution.'); build(); } else {