Fix rasterize example exit status on failure.

https://github.com/ariya/phantomjs/issues/11911
2.0
Petteri Räty 2014-01-19 23:42:59 +02:00 committed by Ariya Hidayat
parent fbe8eefc29
commit a86ae1948c
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ if (system.args.length < 3 || system.args.length > 5) {
page.open(address, function (status) {
if (status !== 'success') {
console.log('Unable to load the address!');
phantom.exit();
phantom.exit(1);
} else {
window.setTimeout(function () {
page.render(output);