fix: don't run twice

This commit is contained in:
decentral1se 2021-12-26 00:02:46 +01:00
parent 9a1cf258a5
commit 9cc2554846
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 4 additions and 2 deletions

View File

@ -146,8 +146,10 @@ 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 := recipe.EnsureUpToDate(recipeDir); err != nil {
logrus.Fatal(err)
if recipeName == "" { // don't run twice
if err := recipe.EnsureUpToDate(recipeDir); err != nil {
logrus.Fatal(err)
}
}
ch <- rm.Name