tony-o / raku-fez

This project is for 'fez', raku's cool new shiny dist uploader & manager. If you're a module author you should definitely be using this sweet thang. ;;;;;;;;;;;;;; This project and the underlying infrastructure is supported out of my own pocket and through donations. If you'd like to donate please check here: https://www.patreon.com/oynot
Artistic License 2.0
20 stars 12 forks source link

`fez --file=dist.tar.gz upload` ignores dist.tar.gz #23

Closed skaji closed 3 years ago

skaji commented 3 years ago

To upload dist.tar.gz which was generated by myself, I tried

fez --file=dist.tar.gz upload

But it seems that fez ignores dist.tar.gz, and upload a new tarball created by fez (https://github.com/tony-o/raku-fez/blob/master/lib/Fez/CLI.rakumod#L282). Is this intentional?

I want to specify a tarball because the tarballs created by fez (i.e.,git archive) contain all files in git repositories, some of which are not needed for module users.

tony-o commented 3 years ago

@skaji this is a bug. I'll check out a fix for it. FWIW git archive should respect your .gitignore so if you have that set up.

tony-o commented 3 years ago

@skaji should be fixed in version 20. please give it a shot

skaji commented 3 years ago

@tony-o Thank you. Now it works.