fix: only ensure latest after cloning
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2022-02-18 09:55:07 +01:00
parent 9d5e805748
commit 5da4afa0ec
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 6 additions and 6 deletions

View File

@ -26,12 +26,6 @@ func ValidateRecipe(c *cli.Context, ensureLatest bool) recipe.Recipe {
ShowSubcommandHelpAndError(c, errors.New("no recipe name provided"))
}
if ensureLatest {
if err := recipe.EnsureLatest(recipeName); err != nil {
logrus.Fatal(err)
}
}
chosenRecipe, err := recipe.Get(recipeName)
if err != nil {
if c.Command.Name == "generate" {
@ -44,6 +38,12 @@ func ValidateRecipe(c *cli.Context, ensureLatest bool) recipe.Recipe {
}
}
if ensureLatest {
if err := recipe.EnsureLatest(recipeName); err != nil {
logrus.Fatal(err)
}
}
logrus.Debugf("validated %s as recipe argument", recipeName)
return chosenRecipe