commit
556f1d4750
1 changed files with 11 additions and 11 deletions
|
|
@ -27,11 +27,11 @@ switch (process.platform) {
|
||||||
var copay = spawn(execPath, [appPath]);
|
var copay = spawn(execPath, [appPath]);
|
||||||
|
|
||||||
copay.stdout.on('data', function(data) {
|
copay.stdout.on('data', function(data) {
|
||||||
console.log(data);
|
console.log("STDOUT:" + data);
|
||||||
});
|
});
|
||||||
|
|
||||||
copay.stderr.on('data', function(data) {
|
copay.stderr.on('data', function(data) {
|
||||||
console.log(color.red(data));
|
console.log("STDERR:" + data);
|
||||||
});
|
});
|
||||||
|
|
||||||
copay.on('close', function(code) {
|
copay.on('close', function(code) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue