We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running as a Cargo subcommand always fails
$ cargo generate-rpm error: The following required argument was not provided: auto_req
whereas directly running the executable
$ cargo-generate-rpm
runs normally.
This is the case even in a fresh Cargo project (cargo new --bin ./gen-rpm-test) with this simple Cargo.toml
cargo new --bin ./gen-rpm-test
Cargo.toml
[package] name = "gen-rpm-test" version = "0.1.0" edition = "2021" license = "MIT" description = "test" [dependencies] [package.metadata.generate-rpm] assets = [ { source = "target/release/gen-rpm-test", dest = "/usr/bin/gen-rpm-test", mode = "755" } ]
The text was updated successfully, but these errors were encountered:
Thank you for reporting.
It is a degrade of v0.15.0 which seems to be caused by 1a226c9
Sorry, something went wrong.
Came to report the same error.
8db4e24
Successfully merging a pull request may close this issue.
Running as a Cargo subcommand always fails
whereas directly running the executable
runs normally.
This is the case even in a fresh Cargo project (
cargo new --bin ./gen-rpm-test
) with this simpleCargo.toml
The text was updated successfully, but these errors were encountered: