* Main.cs: Do not use "/" as a separator, because this breaks
filesystem paths on Unix.
This commit is contained in:
parent
d542896f59
commit
b4a6448261
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ namespace Bind
|
|||
{
|
||||
if (a.StartsWith("--") || a.StartsWith("-") || a.StartsWith("/"))
|
||||
{
|
||||
string[] b = a.Split(new char[] { '-', '/', ':', '=' }, StringSplitOptions.RemoveEmptyEntries);
|
||||
string[] b = a.Split(new char[] { '-', ':', '=' }, StringSplitOptions.RemoveEmptyEntries);
|
||||
switch (b[0])
|
||||
{
|
||||
case "?":
|
||||
|
|
Loading…
Reference in a new issue