Commit ef7a2722 by Michael Mifsud

Merge pull request #1449 from xzyfer/feat/binary-error

Log the error when there is a problem with the binary
parents ec48be49 211f3128
...@@ -209,7 +209,7 @@ function testBinary(options) { ...@@ -209,7 +209,7 @@ function testBinary(options) {
console.log('Binary is fine; exiting.'); console.log('Binary is fine; exiting.');
} catch (e) { } catch (e) {
console.log(['Problem with the binary.', 'Manual build incoming.'].join(eol)); console.log(['Problem with the binary:', e, 'Manual build incoming.'].join(eol));
return build(options); return build(options);
} }
......
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