2015-08-21 13:02:36 +00:00
|
|
|
//
|
2015-09-13 22:14:14 +00:00
|
|
|
// Outdated.swift
|
2015-08-21 13:02:36 +00:00
|
|
|
// mas-cli
|
|
|
|
//
|
|
|
|
// Created by Andrew Naylor on 21/08/2015.
|
|
|
|
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2015-09-13 22:14:14 +00:00
|
|
|
struct OutdatedCommand: CommandType {
|
2015-12-30 21:20:25 +00:00
|
|
|
typealias Options = NoOptions<MASError>
|
2015-09-13 22:14:14 +00:00
|
|
|
let verb = "outdated"
|
2015-08-21 13:02:36 +00:00
|
|
|
let function = "Lists pending updates from the Mac App Store"
|
|
|
|
|
2015-12-30 21:20:25 +00:00
|
|
|
func run(options: Options) -> Result<(), MASError> {
|
|
|
|
let updateController = CKUpdateController.sharedUpdateController()
|
|
|
|
let updates = updateController.availableUpdates()
|
|
|
|
for update in updates {
|
|
|
|
print("\(update.itemIdentifier) \(update.title) (\(update.bundleVersion))")
|
2015-08-21 13:02:36 +00:00
|
|
|
}
|
2015-09-14 08:51:09 +00:00
|
|
|
return .Success(())
|
2015-08-21 13:02:36 +00:00
|
|
|
}
|
|
|
|
}
|