From fb4d5a055ecb72bf8b6542d5cec870eb6767155b Mon Sep 17 00:00:00 2001 From: Ananya Bahadur Date: Mon, 19 Mar 2018 11:45:40 +0530 Subject: [PATCH] Fix gringotts.new Option.parse call. (#125) --- lib/mix/new.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mix/new.ex b/lib/mix/new.ex index 02f4058b..7b4fcd2e 100644 --- a/lib/mix/new.ex +++ b/lib/mix/new.ex @@ -48,7 +48,7 @@ Comma separated list of required configuration keys: > } def run(args) do - {key_list, name, []} = + {key_list, [name], []} = OptionParser.parse( args, switches: [module: :string, url: :string, file: :string],