Skip to content

Commit

Permalink
Merge pull request #61 from paketo-buildpacks/bugfix/parse-error
Browse files Browse the repository at this point in the history
Error during detection if value of BP_NATIVE_IMAGE is not parseable
  • Loading branch information
ekcasey authored Mar 31, 2021
2 parents 92e734a + 536db66 commit 625cdc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/detect.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (d Detect) Detect(context libcnb.DetectContext) (libcnb.DetectResult, error
return libcnb.DetectResult{}, nil
} else if !ok {
// still participates if a downstream buildpack requires native-image-applications
return result, nil
return result, err
}

for i := range result.Plans {
Expand Down

0 comments on commit 625cdc3

Please sign in to comment.