Simon Heather
07/02/2023, 12:04 PMgo generate server/core/runtime/pre_workflow_hook_runner.go
I get the following error:
panic: loading input failed: Did not find interface name "PostWorkflowHookRunner"
If I change the //go:generate
line in the the file from:
//go:generate pegomock generate --package mocks -o mocks/mock_pre_workflows_hook_runner.go PreWorkflowHookRunner
to
//go:generate pegomock generate <http://github.com/runatlantis/atlantis/server/core/runtime|github.com/runatlantis/atlantis/server/core/runtime> --package mocks -o mocks/mock_pre_workflows_hook_runner.go PreWorkflowHookRunner
the mock file is generated successfully.
Can somebody check to see if they get the same issue on the main
branch?