From 295e73d4d977d0e97897d4918bf9ac9a5a681047 Mon Sep 17 00:00:00 2001 From: Thomas Date: Mon, 8 Feb 2021 20:05:14 +1300 Subject: [PATCH] Disable color output for deno By default Deno has color output, we don't need this - and it also makes challenges on emkc.org not give the correct results. --- lxc/executors/deno | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lxc/executors/deno b/lxc/executors/deno index f55e1f4..8ec4c14 100755 --- a/lxc/executors/deno +++ b/lxc/executors/deno @@ -1,4 +1,4 @@ #!/bin/bash cd /tmp/$1 -timeout -s KILL 3 xargs -a args.args -d '\n' deno run code.code < stdin.stdin +timeout -s KILL 3 xargs -a args.args -d '\n' NO_COLOR=true deno run code.code < stdin.stdin