Skip to content

Commit

Permalink
Merge branch version/0-44-0-RC1 to adopt changes from PR #3000
Browse files Browse the repository at this point in the history
  • Loading branch information
as-builds committed Jan 9, 2024
2 parents 27ee90f + b722c2e commit 9158929
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion internal/runners/export/recipe.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,10 @@ func fetchRecipe(proj *project.Project, commitID strfmt.UUID, platform string) (
commitID = *dcommitID
}

return model.FetchRawRecipeForCommitAndPlatform(commitID, proj.Owner(), proj.Name(), platform)
recipe, err := model.FetchRawRecipeForCommitAndPlatform(commitID, proj.Owner(), proj.Name(), platform)
if err != nil {
return "", locale.WrapError(err, "err_fetch_recipe", "Unable to fetch recipe")
}

return recipe, nil
}

0 comments on commit 9158929

Please sign in to comment.