Skip to content

Commit 9598497

Browse files
committed
Apply config.run_args for bootimage run too
1 parent ee987a1 commit 9598497

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/subcommand/run.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ pub(crate) fn run(mut args: Args) -> Result<i32, ErrorString> {
2626
),
2727
);
2828
}
29+
if let Some(run_args) = config.run_args {
30+
command.args(run_args);
31+
}
2932
command.args(&args.run_args);
3033
let exit_status = command.status().map_err(|err| {
3134
ErrorString::from(format!(

0 commit comments

Comments
 (0)