mirror of
https://github.com/bootandy/dust.git
synced 2026-06-08 11:29:05 +03:00
[GH-ISSUE #432] Manual page and completions missing in debian package #188
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @johannesst on GitHub (Aug 19, 2024).
Original GitHub issue: https://github.com/bootandy/dust/issues/432
Hello,
at the moment the debian packages doesn't install the manual page or completion files.
It would be a nice to have, to get them with the package.
Best regards, Johannes
@bootandy commented on GitHub (Aug 21, 2024):
Happy to include them. Do you know how ?
@wugeer commented on GitHub (Aug 25, 2024):
@johannesst Hello, I’m happy to tackle this issue.



When I run the command
deb-get install du-duston my local Debian virtual machine and install Dust, I indeed don’t find the Dust man pages or any prompt information in bash.From the installation logs, I did not see any information related to configuring man-db.
After adding



man-pageandcompletions/dust.bashconfigurations underpackage.metadata.deb.assetsinCargo.toml, re-packaging withcargo deb, and re-installing withsudo dpkg -i ./target/debian/du-dust_1.1.1-1_amd64.deb, bothman dustand the bash prompt for Dust are functioning correctly again.For your situation, you can try the modifications I suggested above and then repackage locally and reinstall to see if the issue is resolved. Alternatively, you might wait for the next release of the Debian
du-dustpackage to see if the problem is fixed.I hope this helps!
@bootandy commented on GitHub (Sep 3, 2024):
Thank you @wugeer