I also encounter this problem when packaging gopass, it depends on "github.com/gopasspw/gopass-hibp/pkg/hibp/api" in github.com/gopasspw/gopass/internal/audit/audit.go , but golist do not generate requires for it .Because "github.com/gopasspw/gopass-hibp" has same prefix with "github.com/gopasspw/gopass".
So we must add a "/" to "github.com/gopasspw/gopass" to prevent the path comparison problem.
Fix for issue 34
I also encounter this problem when packaging
gopass, it depends on "github.com/gopasspw/gopass-hibp/pkg/hibp/api" in github.com/gopasspw/gopass/internal/audit/audit.go , but golist do not generate requires for it .Because "github.com/gopasspw/gopass-hibp" has same prefix with "github.com/gopasspw/gopass".So we must add a "/" to "github.com/gopasspw/gopass" to prevent the path comparison problem.