From 381ad34ae8a189e308da6e022556f9c57dd5f492 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Fri, 23 Aug 2024 16:48:32 -0700 Subject: [PATCH] Try nightly --- test.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test.sh b/test.sh index 4551f8e..02bd6df 100755 --- a/test.sh +++ b/test.sh @@ -2,9 +2,11 @@ set -ex +rustup install nightly + cd foo for run in {1..1000}; do touch src/main.rs - cargo run + cargo +nightly run done