mas/App/Commands/Account.swift
2018-10-13 22:22:20 -06:00

27 lines
670 B
Swift

//
// Account.swift
// mas-cli
//
// Created by Andrew Naylor on 21/08/2015.
// Copyright (c) 2015 Andrew Naylor. All rights reserved.
//
import Commandant
import Result
struct AccountCommand: CommandProtocol {
typealias Options = NoOptions<MASError>
let verb = "account"
let function = "Prints the primary account Apple ID"
func run(_ options: Options) -> Result<(), MASError> {
if let account = ISStoreAccount.primaryAccount {
print(String(describing: account.identifier))
}
else {
print("Not signed in")
return .failure(.notSignedIn)
}
return .success(())
}
}