mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-30 18:46:57 +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);
|
||||
}).tap(function(output) {
|
||||
return console.info("The image was downloaded to " + output);
|
||||
return console.info('The image was downloaded successfully');
|
||||
}).nodeify(done);
|
||||
}
|
||||
};
|
||||
|
@ -57,7 +57,7 @@ exports.download =
|
||||
|
||||
return rindle.wait(stream.pipe(output)).return(options.output)
|
||||
.tap (output) ->
|
||||
console.info("The image was downloaded to #{output}")
|
||||
console.info('The image was downloaded successfully')
|
||||
.nodeify(done)
|
||||
|
||||
stepHandler = (step) ->
|
||||
|
Loading…
Reference in New Issue
Block a user