From d2b8b98f0842fc9d8c99490522167486e76aa40e Mon Sep 17 00:00:00 2001 From: DarkFeather Date: Wed, 9 Nov 2016 22:30:08 -0600 Subject: [PATCH] Fixes --- Makefile | 2 +- cryptoworkbench.csharp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 608da4e..0cd1b4c 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ TMUXSetting != grep -c "cryptoworkbench" /etc/tmux.conf compile: clean /usr/bin/mcs analysis.csharp substitution.csharp caesarian.csharp cryptoworkbench.csharp - /usr/bin/mcs -out:cryptoworkbench.exe *.csharp + /usr/bin/mcs -out:cryptoworkbench.exe *.csharp 2>&1 | grep -v 'is assigned but its value is never used' test: /usr/bin/mono compile /usr/bin/mono cryptoworkbench.exe ./sample.txt diff --git a/cryptoworkbench.csharp b/cryptoworkbench.csharp index 910dacc..f03ff87 100644 --- a/cryptoworkbench.csharp +++ b/cryptoworkbench.csharp @@ -274,6 +274,7 @@ namespace AniNIX.Crypto { try { workSpace = SwitchCases[command].RunCommand(this.workSpace,this.inputText,line); } catch (Exception e) { + e.ToString(); Console.Error.WriteLine("Command not found."); } break;