Open kastl-ars opened 4 months ago
Hmmm, seems like the basename_from_archive
function looks for only directories within the tarball. And it only finds one: .github
.
If I change the order, in which the functions are being called, then the basename detection seems to work:
args.basename
or basename_from_archive_name(archive)
or basename_from_archive(archive)
)
The changes from #51 seem to do the trick in this case, at least it then leads to #52... :-)
(Manually setting the basename
also works, but the service should be smart enough IMHO)
Another instance of the service not finding the go.mod file:
https://github.com/minio/certgen/tree/v1.3.0
The basename was incorrectly detected as
certgen/.github
, but even with setting the basename and the subdir it still fails.