Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
liias committed Aug 23, 2024
1 parent 817b658 commit 629095a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ fn main() {

// e.g target/
// or target/aarch64-unknown-linux-gnu/
let arch_target_dir = get_target_build_path().parent().unwrap();
let target_build_path = get_target_build_path();
let arch_target_dir = target_build_path.parent().unwrap();

create_deb_control(rust_target_arch.as_str(), arch_target_dir);
create_rpm_spec(rust_target_arch.as_str(), arch_target_dir);
Expand Down

0 comments on commit 629095a

Please sign in to comment.