Suppress unnecessary output during install

This commit is contained in:
Andrew Naylor 2015-08-22 19:29:48 +08:00
parent fd658835e9
commit 6481d82029

View file

@ -13,10 +13,7 @@ struct InstallCommand: CommandType {
func run(mode: CommandMode) -> Result<(), CommandantError<MASError>> {
return InstallOptions.evaluate(mode).map { options in
download(options.appId) { (purchase, completed, error, response) in
print(purchase)
print(completed)
print(error)
print(response)
}
}
}