You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 19, 2022. It is now read-only.
Expected Result usr/bin/example should be inside the debian package as specified in Cargo.toml.
Possible root cause
From the logging results of cargo deb, the installation procedure has already started while cargo build --release hasn't finished.
Another fact is that when ./target/release/example is already there, it will be included in the package finally.
The text was updated successfully, but these errors were encountered:
Thanks for the report. It is indeed silently ignoring files that are missing, since asset paths are interpreted as globs, and globs are allowed not to match. I've fixed that in 06d78af
Expected Result
usr/bin/example
should be inside the debian package as specified in Cargo.toml.Possible root cause
From the logging results of
cargo deb
, the installation procedure has already started whilecargo build --release
hasn't finished.Another fact is that when
./target/release/example
is already there, it will be included in the package finally.The text was updated successfully, but these errors were encountered: