mas/mas-cli/Commands/Outdated.swift

26 lines
764 B
Swift
Raw Normal View History

//
// Outdated.swift
// mas-cli
//
// Created by Andrew Naylor on 21/08/2015.
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
//
struct OutdatedCommand: CommandType {
let verb = "outdated"
let function = "Lists pending updates from the Mac App Store"
func run(mode: CommandMode) -> Result<(), CommandantError<MASError>> {
switch mode {
case .Arguments:
let updateController = CKUpdateController.sharedUpdateController()
2015-09-20 23:00:05 +00:00
let updates = updateController.availableUpdates()
2015-08-24 18:43:15 +00:00
for update in updates {
print("\(update.itemIdentifier) \(update.title) (\(update.bundleVersion))")
2015-08-24 18:43:15 +00:00
}
default:
break
}
2015-09-14 08:51:09 +00:00
return .Success(())
}
}