We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b1d6be commit a876fcaCopy full SHA for a876fca
gazelle/configure.go
@@ -154,11 +154,11 @@ func (py *Configurer) loadGazelleManifest(gazelleManifestPath string) (*manifest
154
if os.IsNotExist(err) {
155
return nil, nil
156
}
157
- return nil, fmt.Errorf("failed to load Gazelle manifest: %w", err)
+ return nil, fmt.Errorf("failed to load Gazelle manifest at %q: %w", gazelleManifestPath, err)
158
159
manifestFile := new(manifest.File)
160
if err := manifestFile.Decode(gazelleManifestPath); err != nil {
161
162
163
return manifestFile.Manifest, nil
164
0 commit comments