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`.
This commit is contained in:
Juan Cruz Viotti 2015-11-23 23:38:28 -04:00
parent 65646d1206
commit ae8621dc81
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}
};

View File

@ -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) ->