Skip to content

Commit

Permalink
1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fosskers committed Sep 7, 2021
1 parent 8dbdc1a commit d6f9fae
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# `cargo-aur` Changelog

## 1.4.1 (2021-09-06)

#### Fixed

- `cargo aur` now respects `CARGO_TARGET_DIR`. [#6]

[#6]: https://github.com/fosskers/cargo-aur/pull/6

## 1.4.0 (2021-06-07)

#### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-aur"
version = "1.4.0"
version = "1.4.1"
authors = ["Colin Woodbury <[email protected]>"]
edition = "2018"
description = "Prepare Rust projects to be released on the Arch Linux User Repository."
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ fn tarball(musl: bool, license: Option<&DirEntry>, package: &Package) -> Result<
"release"
};

let mut binary: PathBuf = (target_dir).into();
let mut binary: PathBuf = target_dir.into();
binary.push(release_dir);
binary.push(&package.name);

Expand Down

0 comments on commit d6f9fae

Please sign in to comment.