mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 04:08:19 +00:00
print a prettier command string
This commit is contained in:
parent
a522d49558
commit
1d260530fb
3 changed files with 15 additions and 13 deletions
|
@ -192,7 +192,8 @@ fn cp_unless_zig_cache(src_dir: &Path, target_dir: &Path) -> io::Result<()> {
|
|||
}
|
||||
|
||||
fn run_command(mut command: Command, flaky_fail_counter: usize) {
|
||||
let command_str = format!("{:?}", &command);
|
||||
let command_str = roc_utils::pretty_command_string(&command);
|
||||
let command_str = command_str.to_string_lossy();
|
||||
|
||||
let output_result = command.output();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue