fixed a bug when running with the arguments: "<any account that wasn't first>"

This commit is contained in:
Carson McManus 2016-08-25 21:21:06 -04:00
parent b7d2f8a0ee
commit 3c12772e7a

View file

@ -77,10 +77,10 @@ public static class Program
{ {
action = "generate-code"; action = "generate-code";
} }
continue; else if (string.IsNullOrEmpty(user))
user = args[i];
} }
// its a username else if (string.IsNullOrEmpty(user))
if (string.IsNullOrEmpty(user))
user = args[i]; user = args[i];
} }
} }