Skip to content

Commit

Permalink
Update mockgen source paths in makefile
Browse files Browse the repository at this point in the history
Adjusted the source paths for mock generation to reflect the new directory structure. This helps in organizing the mock files according to their respective components, improving maintainability and readability.
  • Loading branch information
rolandgroen committed Oct 14, 2024
1 parent 31c2122 commit cc81693
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ install-tools:
go install github.com/golangci/golangci-lint/cmd/[email protected]

gen-mocks:
mockgen -destination=uzi_vc_issuer/did_x509_mock.go -package=uzi_vc_issuer -source=uzi_vc_issuer/did_x509.go
mockgen -destination=uzi_vc_issuer/x509_cert_mock.go -package=uzi_vc_issuer -source=uzi_vc_issuer/x509_cert.go
mockgen -destination=uzi_vc_issuer/pem_reader_mock.go -package=uzi_vc_issuer -source=uzi_vc_issuer/pem_reader.go
mockgen -destination=uzi_vc_issuer/did_x509_mock.go -package=uzi_vc_issuer -source=did_x509/did_x509.go
mockgen -destination=uzi_vc_issuer/x509_cert_mock.go -package=uzi_vc_issuer -source=x509_cert/x509_cert.go
mockgen -destination=uzi_vc_issuer/pem_reader_mock.go -package=uzi_vc_issuer -source=pem/pem_reader.go

lint:
golangci-lint run -v
Expand Down

0 comments on commit cc81693

Please sign in to comment.