Merge pull request from resin-io/jviotti/fix/remove-debug-download-msg

Simplify download output message
This commit is contained in:
Juan Cruz Viotti 2015-11-24 11:07:40 -04:00
commit 359c37f259
2 changed files with 2 additions and 2 deletions
build/actions
lib/actions

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