diff options
author | JasperVanEsveld <J.M.vanEsveld@student.tudelft.nl> | 2023-07-28 17:46:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-28 18:46:26 +0300 |
commit | 0ec4feaee7a2dd442fc8955036999b550c9959ac (patch) | |
tree | 0ed00be3167c9b73ae7ad5ea60f44e3209cd9dd6 /cli/tools/compile.rs | |
parent | a9951e360cf9937c84bb884ccfefbbd304b401e3 (diff) |
feat(compile): Add `--no-terminal` to compile command (#17991)
Diffstat (limited to 'cli/tools/compile.rs')
-rw-r--r-- | cli/tools/compile.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/tools/compile.rs b/cli/tools/compile.rs index c53ae4e02..d925b0ea3 100644 --- a/cli/tools/compile.rs +++ b/cli/tools/compile.rs @@ -212,6 +212,7 @@ mod test { output: Some(PathBuf::from("./file")), args: Vec::new(), target: Some("x86_64-unknown-linux-gnu".to_string()), + no_terminal: false, include: vec![], }, &std::env::current_dir().unwrap(), @@ -234,6 +235,7 @@ mod test { args: Vec::new(), target: Some("x86_64-pc-windows-msvc".to_string()), include: vec![], + no_terminal: false, }, &std::env::current_dir().unwrap(), ) |