fix: fetch recipe for "app list -S"
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-04-19 02:05:50 +02:00
committed by decentral1se
parent fa084a61d2
commit a43a092ba7
3 changed files with 21 additions and 2 deletions

View File

@ -25,7 +25,7 @@ func gitCloneIgnoreErr(err error) bool {
// Clone runs a git clone which accounts for different default branches.
func Clone(dir, url string) error {
if _, err := os.Stat(dir); os.IsNotExist(err) {
log.Debugf("git clone: %s", dir, url)
log.Debugf("git clone: %s", url)
_, err := git.PlainClone(dir, false, &git.CloneOptions{
URL: url,