From 50c47b1477c56c5027206196c3e43c18ad5b3470 Mon Sep 17 00:00:00 2001 From: Andrew Naylor Date: Thu, 31 Dec 2015 01:54:04 +0000 Subject: [PATCH] Fix the options parsing for the Install command Oops. --- mas-cli/Commands/Install.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mas-cli/Commands/Install.swift b/mas-cli/Commands/Install.swift index e2cd33b2e..1393b018e 100644 --- a/mas-cli/Commands/Install.swift +++ b/mas-cli/Commands/Install.swift @@ -29,6 +29,6 @@ struct InstallOptions: OptionsType { static func evaluate(m: CommandMode) -> Result> { return create - <*> m <| Option(key: "", defaultValue: nil, usage: "the app ID to install") + <*> m <| Argument(usage: "the app ID to install") } } \ No newline at end of file