WIP: further process on app new command

This commit is contained in:
2021-07-30 13:16:28 +02:00
parent 6c36e77722
commit 064a0f271f
5 changed files with 125 additions and 9 deletions

View File

@ -92,7 +92,7 @@ var recipeCreateCommand = &cli.Command{
}
url := fmt.Sprintf("%s/example.git", config.REPOS_BASE_URL)
_, err := git.PlainClone(directory, false, &git.CloneOptions{URL: url})
_, err := git.PlainClone(directory, false, &git.CloneOptions{URL: url, Tags: git.AllTags})
if err != nil {
logrus.Fatal(err)
return nil