fixed a bug when running with the arguments: "<any account that wasn't first>"
This commit is contained in:
parent
b7d2f8a0ee
commit
3c12772e7a
1 changed files with 3 additions and 3 deletions
|
@ -77,10 +77,10 @@ public static class Program
|
|||
{
|
||||
action = "generate-code";
|
||||
}
|
||||
continue;
|
||||
else if (string.IsNullOrEmpty(user))
|
||||
user = args[i];
|
||||
}
|
||||
// its a username
|
||||
if (string.IsNullOrEmpty(user))
|
||||
else if (string.IsNullOrEmpty(user))
|
||||
user = args[i];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue