From af2f7f6e8c4ab99c25b03403e85a17cd46989a52 Mon Sep 17 00:00:00 2001 From: Jake Goulding Date: Tue, 12 Jul 2016 20:16:37 -0400 Subject: [PATCH] Use the new-style error messages Closes #20 --- ui/src/sandbox.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/src/sandbox.rs b/ui/src/sandbox.rs index f70064bd2..1c5c0fe3c 100644 --- a/ui/src/sandbox.rs +++ b/ui/src/sandbox.rs @@ -199,7 +199,8 @@ impl Sandbox { .args(&["--net", "none"]) .args(&["--memory", "256m"]) .args(&["--memory-swap", "320m"]) - .args(&["--env", "PLAYGROUND_TIMEOUT=10"]); + .args(&["--env", "PLAYGROUND_TIMEOUT=10"]) + .args(&["--env", "RUST_NEW_ERROR_FORMAT=true"]); cmd }