From ae8621dc8185daea2beffac198f8ee553b8d2c17 Mon Sep 17 00:00:00 2001 From: Juan Cruz Viotti Date: Mon, 23 Nov 2015 23:38:28 -0400 Subject: [PATCH] Simplify download output message The message displayed the output of the download, which was mainly used for debugging purposes when developing `device init` and `quickstart`. --- build/actions/os.js | 2 +- lib/actions/os.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build/actions/os.js b/build/actions/os.js index b10f5603..3a6b0aee 100644 --- a/build/actions/os.js +++ b/build/actions/os.js @@ -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); } }; diff --git a/lib/actions/os.coffee b/lib/actions/os.coffee index bb883c8a..9b44bc8d 100644 --- a/lib/actions/os.coffee +++ b/lib/actions/os.coffee @@ -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) ->