From 7fc0b9efb86d563e2648b0d07655334577438769 Mon Sep 17 00:00:00 2001 From: Brikaa Date: Sun, 10 Oct 2021 14:40:58 +0200 Subject: [PATCH] Revert Mono error separation to work with websockets --- packages/mono/6.12.0/compile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/packages/mono/6.12.0/compile b/packages/mono/6.12.0/compile index e3ae230..5246bc2 100644 --- a/packages/mono/6.12.0/compile +++ b/packages/mono/6.12.0/compile @@ -1,20 +1,13 @@ #!/bin/bash -check_errors () { - grep -q 'error [A-Z]\+[0-9]\+:' check.txt && cat check.txt 1>&2 || cat check.txt - rm check.txt -} - case "${PISTON_LANGUAGE}" in csharp) rename 's/$/\.cs/' "$@" # Add .cs extension - csc -out:out *.cs > check.txt - check_errors + csc -out:out *.cs ;; basic) rename 's/$/\.vb/' "$@" # Add .vb extension - vbnc -out:out *.vb > check.txt - check_errors + vbnc -out:out *.vb ;; *) echo "How did you get here? (${PISTON_LANGUAGE})"