summaryrefslogtreecommitdiff
path: root/BCT
diff options
context:
space:
mode:
authorGravatar t-espave <unknown>2011-07-28 09:46:04 -0700
committerGravatar t-espave <unknown>2011-07-28 09:46:04 -0700
commit187603cdcce52f016503ba32f976e15408590465 (patch)
treee19348a04479df0d4fd7ed9a1d0c925fe18fb033 /BCT
parent02c447a20928134d1259a1c87c14a2b5dbb577c5 (diff)
option bugfix
Diffstat (limited to 'BCT')
-rw-r--r--BCT/BytecodeTranslator/Program.cs2
1 files changed, 1 insertions, 1 deletions
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);