Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
92c4f0c77a |
9
main.go
9
main.go
@ -188,13 +188,18 @@ func getOrDownload(results *wallhaven.SearchResults, r *rand.Rand, downloadPath
|
|||||||
}
|
}
|
||||||
result := results.Data[r.Intn(len(results.Data))]
|
result := results.Data[r.Intn(len(results.Data))]
|
||||||
fullPath := path.Join(downloadPath, path.Base(result.Path))
|
fullPath := path.Join(downloadPath, path.Base(result.Path))
|
||||||
if _, err := os.Stat(fullPath); err != nil {
|
_, err := os.Stat(fullPath)
|
||||||
|
if err == nil {
|
||||||
|
return fullPath, nil
|
||||||
|
}
|
||||||
|
if os.IsNotExist(err) {
|
||||||
err = result.Download(path.Join(downloadPath))
|
err = result.Download(path.Join(downloadPath))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
return fullPath, nil
|
||||||
}
|
}
|
||||||
return fullPath, nil
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
func runScript(imgPath, script string) error {
|
func runScript(imgPath, script string) error {
|
||||||
|
Loading…
Reference in New Issue
Block a user