Skip to content

Commit

Permalink
Create the parent directory outside of Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
schneems committed Jul 27, 2024
1 parent 19bfff6 commit f318839
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ruby_executable/src/bin/ruby_build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ fn ruby_build(args: &RubyArgs) -> Result<(), Box<dyn std::error::Error>> {
if version.major > 3 || (version.major == 3 && version.minor >= 2) {
docker_run.args(["-e", "ENABLE_YJIT=1"]);
}
fs_err::create_dir_all(output_tar.parent().unwrap())?;

docker_run.arg(&image_name);
docker_run.args(["bash", "-c"]);
Expand Down

0 comments on commit f318839

Please sign in to comment.