diff options
author | t-espave <unknown> | 2011-07-28 09:46:04 -0700 |
---|---|---|
committer | t-espave <unknown> | 2011-07-28 09:46:04 -0700 |
commit | 187603cdcce52f016503ba32f976e15408590465 (patch) | |
tree | e19348a04479df0d4fd7ed9a1d0c925fe18fb033 /BCT | |
parent | 02c447a20928134d1259a1c87c14a2b5dbb577c5 (diff) |
option bugfix
Diffstat (limited to 'BCT')
-rw-r--r-- | BCT/BytecodeTranslator/Program.cs | 2 |
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);
|