* Main.cs: Accept -mode:cl as an alias for -mode:cl10

This commit is contained in:
the_fiddler 2009-08-12 10:12:44 +00:00
parent 62e19c43a1
commit 66b8f317f4

View file

@ -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();