mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 20:13:19 +00:00
26 lines
No EOL
764 B
Swift
26 lines
No EOL
764 B
Swift
//
|
|
// 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()
|
|
let updates = updateController.availableUpdates()
|
|
for update in updates {
|
|
print("\(update.itemIdentifier) \(update.title) (\(update.bundleVersion))")
|
|
}
|
|
default:
|
|
break
|
|
}
|
|
return .Success(())
|
|
}
|
|
} |