mas/mas-cli/Commands/Outdated.swift

23 lines
667 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 {
2015-12-30 21:20:25 +00:00
typealias Options = NoOptions<MASError>
let verb = "outdated"
let function = "Lists pending updates from the Mac App Store"
2016-09-17 12:58:38 +00:00
func run(_ options: Options) -> Result<(), MASError> {
let updateController = CKUpdateController.shared()
let updates = updateController?.availableUpdates()
for update in updates! {
2015-12-30 21:20:25 +00:00
print("\(update.itemIdentifier) \(update.title) (\(update.bundleVersion))")
}
2016-09-17 12:58:38 +00:00
return .success(())
}
2016-09-17 12:58:38 +00:00
}