While running cargo-deb for git-cliff, I got the following error:
$ cargo-deb --strip --manifest-path git-cliff/Cargo.toml -v
cargo-deb: unable to read extended description from file: ../README.md
because: No such file or directory (os error 2)
This is due to git-cliff being a workspace package and pointing out to a readme file in a parent directory:
[package]
readme = "../README.md"
This PR fixes this issue by using an canonicalized absolute path for readme file.
While running
cargo-deb
for git-cliff, I got the following error:This is due to
git-cliff
being a workspace package and pointing out to a readme file in a parent directory:This PR fixes this issue by using an canonicalized absolute path for readme file.