* Main.cs: Do not use "/" as a separator, because this breaks

filesystem paths on Unix.
This commit is contained in:
the_fiddler 2010-12-05 22:58:20 +00:00
parent 4d14448bbf
commit aedaeb1276

View file

@ -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 "?":