* Main.cs: Accept -mode:cl as an alias for -mode:cl10
This commit is contained in:
parent
62e19c43a1
commit
66b8f317f4
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ namespace Bind
|
|||
mode = GeneratorMode.ES11;
|
||||
else if (arg == "es20")
|
||||
mode = GeneratorMode.ES20;
|
||||
else if (arg == "cl10")
|
||||
else if (arg=="cl" || arg == "cl10")
|
||||
mode = GeneratorMode.CL10;
|
||||
else
|
||||
throw new NotImplementedException();
|
||||
|
|
Loading…
Reference in a new issue