fix: don't run twice
This commit is contained in:
parent
9a1cf258a5
commit
9cc2554846
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user