FineFindus / artem

Convert images from multiple formats (jpg, png, webp, etc…) to ASCII art, written in Rust
Mozilla Public License 2.0
293 stars 9 forks source link

Manpages missing #3

Closed talwat closed 2 years ago

talwat commented 2 years ago

Hi! I noticed that the doc directory is missing, which is where the manpage is supposed to be according to the README. Is this a mistake or is this intentional?

FineFindus commented 2 years ago

No, it is not intentional. What OS do you use/ which release did you download?

talwat commented 2 years ago

I just cloned the git repository and I couldn’t find the doc directory in the cloned directory.

FineFindus commented 2 years ago

Yes, that's correct. The man page and the shell completion files are only generated in the build process from build.rs. After running it, they can be found in the OUT_DIR (target/debug/build/artem-hash/out/artem.1").

You can trigger the generation of them with any build process, like cargo build.

Please feel free to reopen this issue if you still have a problem.

talwat commented 2 years ago

Ah, thanks!