From 187603cdcce52f016503ba32f976e15408590465 Mon Sep 17 00:00:00 2001 From: t-espave Date: Thu, 28 Jul 2011 09:46:04 -0700 Subject: option bugfix --- BCT/BytecodeTranslator/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'BCT') diff --git a/BCT/BytecodeTranslator/Program.cs b/BCT/BytecodeTranslator/Program.cs index 21e78aa3..3179afa6 100644 --- a/BCT/BytecodeTranslator/Program.cs +++ b/BCT/BytecodeTranslator/Program.cs @@ -77,7 +77,7 @@ namespace BytecodeTranslator { if (options.HasErrors) { options.PrintErrorsAndExit(Console.Out); } - if (String.IsNullOrWhiteSpace(options.exemptionFile)) { + if (!String.IsNullOrWhiteSpace(options.exemptionFile)) { string fileName = options.exemptionFile; var c = fileName[fileName.Length - 1]; if (c == '+' || c == '-') fileName = options.exemptionFile.Remove(fileName.Length - 1); -- cgit v1.2.3