mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 19:43:09 +00:00
25 lines
640 B
Swift
25 lines
640 B
Swift
//
|
|
// Version.swift
|
|
// mas-cli
|
|
//
|
|
// Created by Andrew Naylor on 20/09/2015.
|
|
// Copyright © 2015 Andrew Naylor. All rights reserved.
|
|
//
|
|
|
|
struct VersionCommand: CommandType {
|
|
let verb = "version"
|
|
let function = "Print version number"
|
|
|
|
func run(mode: CommandMode) -> Result<(), CommandantError<MASError>> {
|
|
switch mode {
|
|
case .Arguments:
|
|
let plist = NSBundle.mainBundle().infoDictionary
|
|
if let versionString = plist?["CFBundleShortVersionString"] {
|
|
print(versionString)
|
|
}
|
|
default:
|
|
break
|
|
}
|
|
return .Success(())
|
|
}
|
|
}
|