aboutsummaryrefslogtreecommitdiff
path: root/xtask
diff options
context:
space:
mode:
Diffstat (limited to 'xtask')
-rw-r--r--xtask/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/xtask/src/main.rs b/xtask/src/main.rs
index 182ba2b..1a3d52f 100644
--- a/xtask/src/main.rs
+++ b/xtask/src/main.rs
@@ -456,7 +456,7 @@ fn example_check(cargoarg: &Option<&str>, target: &str, examples: &[String]) ->
mode: BuildMode::Release,
};
- if let Err(err) = command_parser(&cmd, overwrite) {
+ if let Err(err) = command_parser(&cmd, false) {
error!("{err}");
}
});
@@ -474,7 +474,7 @@ fn example_build(cargoarg: &Option<&str>, target: &str, examples: &[String]) ->
mode: BuildMode::Release,
};
- if let Err(err) = command_parser(&cmd, overwrite) {
+ if let Err(err) = command_parser(&cmd, false) {
error!("{err}");
}
});