Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
92c4f0c77a | |||
c243b76969 | |||
538e2f69de |
@ -8,9 +8,7 @@ before:
|
|||||||
- go mod tidy
|
- go mod tidy
|
||||||
|
|
||||||
builds:
|
builds:
|
||||||
- env:
|
- goos:
|
||||||
- CGO_ENABLED=0
|
|
||||||
goos:
|
|
||||||
- linux
|
- linux
|
||||||
- windows
|
- windows
|
||||||
- darwin
|
- darwin
|
||||||
@ -18,7 +16,7 @@ builds:
|
|||||||
- goos: windows
|
- goos: windows
|
||||||
goarch: "386"
|
goarch: "386"
|
||||||
ldflags:
|
ldflags:
|
||||||
- -s -w -X git.asdf.cafe/abs3nt/wallhaven_dl/main.Version={{.Version}}
|
- -s -w -X main.Version={{.Version}}
|
||||||
|
|
||||||
archives:
|
archives:
|
||||||
- format: tar.gz
|
- format: tar.gz
|
||||||
|
18
main.go
18
main.go
@ -188,19 +188,23 @@ 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 {
|
||||||
_, err := exec.Command(script, imgPath).Output()
|
cmd := exec.Command(script, imgPath)
|
||||||
if err != nil {
|
cmd.Stdout = os.Stdout
|
||||||
return err
|
cmd.Stderr = os.Stderr
|
||||||
}
|
return cmd.Run()
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user