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";
|
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];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue