From 935aecef66b3c8eecff13a76d0ba7999ee7fd206 Mon Sep 17 00:00:00 2001 From: Gareth Knowles Date: Tue, 2 Apr 2024 09:02:15 +0100 Subject: [PATCH] Add +nightly to simulator builds --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 28c9817..328a9e3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -611,7 +611,7 @@ impl Build { let mut args = if self.device { vec!["+nightly", "build"] } else { - vec!["build"] + vec!["+nightly", "build"] }; let project_path = if let Some(manifest_path) = opt.manifest_path.as_ref() {