fix: use one function for up-to-date checks

This commit is contained in:
2021-12-25 23:45:52 +01:00
parent 8735a8f0ea
commit ba8138079f
3 changed files with 24 additions and 64 deletions

View File

@ -146,7 +146,7 @@ A new catalogue copy can be published to the recipes repository by passing the
logrus.Fatalf("%s has locally unstaged changes", rm.Name)
}
if err := gitPkg.EnsureUpToDate(recipeDir); err != nil {
if err := recipe.EnsureUpToDate(recipeDir); err != nil {
logrus.Fatal(err)
}