Skip to content

Commit

Permalink
Debug CI
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed Jul 25, 2024
1 parent 74a8acf commit f9a7d21
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions ruby_executable/src/bin/ruby_build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,20 @@ fn ruby_build(args: &RubyArgs) -> Result<(), Box<dyn std::error::Error>> {
);

bullet = bullet.sub_bullet(format!("Copying SHA tgz {}", sha_seven_path.display(),));
println!(
"File {} exists on disk {}",
output_tar.display(),
output_tar.exists()
);

Command::new("bash")
.arg("-c")
.arg(format!(
"cd {} && ls -la",
output_tar.parent().unwrap().display()
))
.stream_output(std::io::stdout(), std::io::stderr())?;

fs_err::copy(output_tar, &sha_seven_path)?;

let artifact = Artifact {
Expand Down

0 comments on commit f9a7d21

Please sign in to comment.