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 f66f97c commit 4372f9cCopy full SHA for 4372f9c
cmd/pythonBuild.go
@@ -64,7 +64,7 @@ func runPythonBuild(config *pythonBuildOptions, telemetryData *telemetry.CustomD
64
// check project descriptor
65
buildDescriptorFilePath, err := searchDescriptor([]string{"pyproject.toml", "setup.py"}, utils.FileExists)
66
if err != nil {
67
- return err
+ return fmt.Errorf("failed to determine build descriptor file: %w", err)
68
}
69
70
if strings.HasSuffix(buildDescriptorFilePath, "pyproject.toml") {
0 commit comments