added stdout check to exec

This commit is contained in:
Baris Soner Usakli
2013-12-07 17:03:07 -05:00
parent 0bcc1642c7
commit bc8bb352a8

5
app.js
View File

@@ -49,10 +49,9 @@
}; };
require('child_process').exec('/usr/bin/which convert', function(err, stdout, stderr) { require('child_process').exec('/usr/bin/which convert', function(err, stdout, stderr) {
if(err) { if(err || !stdout) {
winston.warn('Counldn\'t find convert. Did you install imagemagick? ', err.message); winston.warn('Counldn\'t find convert. Did you install imagemagick?');
} }
winston.warn('Counldn\'t find convert. Did you install imagemagick? ', err);
}); });
// Log GNU copyright info along with server info // Log GNU copyright info along with server info