From 49bee022e908019e75e03d89f09fcc8abfec7f62 Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Thu, 25 Aug 2016 21:25:14 -0400 Subject: [PATCH] added setup action as alias for add action --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 3423665..8cecf44 100644 --- a/Program.cs +++ b/Program.cs @@ -57,7 +57,7 @@ public static class Program { if (string.IsNullOrEmpty(action)) { - if (args[i] == "add") + if (args[i] == "add" || args[i] == "setup") { action = "setup"; }