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.
This commit is contained in:
Thomas 2021-02-08 20:05:14 +13:00 committed by GitHub
parent 4d344db148
commit 295e73d4d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash #!/bin/bash
cd /tmp/$1 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