mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-20 06:07:55 +00:00
Merge pull request #270 from resin-io/jviotti/fix/remove-debug-download-msg
Simplify download output message
This commit is contained in:
commit
359c37f259
@ -68,7 +68,7 @@
|
|||||||
}
|
}
|
||||||
return rindle.wait(stream.pipe(output))["return"](options.output);
|
return rindle.wait(stream.pipe(output))["return"](options.output);
|
||||||
}).tap(function(output) {
|
}).tap(function(output) {
|
||||||
return console.info("The image was downloaded to " + output);
|
return console.info('The image was downloaded successfully');
|
||||||
}).nodeify(done);
|
}).nodeify(done);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -57,7 +57,7 @@ exports.download =
|
|||||||
|
|
||||||
return rindle.wait(stream.pipe(output)).return(options.output)
|
return rindle.wait(stream.pipe(output)).return(options.output)
|
||||||
.tap (output) ->
|
.tap (output) ->
|
||||||
console.info("The image was downloaded to #{output}")
|
console.info('The image was downloaded successfully')
|
||||||
.nodeify(done)
|
.nodeify(done)
|
||||||
|
|
||||||
stepHandler = (step) ->
|
stepHandler = (step) ->
|
||||||
|
Loading…
Reference in New Issue
Block a user