From 26e1852d6511ca1f68ff4e499393c7eebd53f1f8 Mon Sep 17 00:00:00 2001 From: bconn98 Date: Tue, 19 Dec 2023 21:00:30 -0500 Subject: [PATCH] waiting --- test/color-test/src/main.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/color-test/src/main.rs b/test/color-test/src/main.rs index 241e05ee..bab0d74c 100644 --- a/test/color-test/src/main.rs +++ b/test/color-test/src/main.rs @@ -3,14 +3,10 @@ use std::thread; use std::time::Duration; fn main() { - Command::new("ls") - .current_dir("../../") - .spawn() - .expect("Cargo command failed to start"); - Command::new("cargo") .args(&["build", "--example", "compile_time_config"]) .current_dir("../../") + .output() .spawn() .expect("Cargo command failed to start");