Skip to content
1 change: 1 addition & 0 deletions crates/rattler_build_core/src/package_test/run_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -957,6 +957,7 @@ async fn run_commands_test(
})?;

tracing::info!("Testing commands:");

commands_test
.script
.run_script(
Expand Down
2 changes: 1 addition & 1 deletion crates/rattler_build_script/src/interpreter/bash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ impl Interpreter for BashInterpreter {
}

let build_script_path_str = build_script_path.to_string_lossy().to_string();
let cmd_args = vec!["bash", &build_script_path_str];
let cmd_args = vec!["bash", "-x", &build_script_path_str];

let output = run_process_with_replacements(
&cmd_args,
Expand Down