2 Commits

Author SHA1 Message Date
William Gill
33438c5169 typo
Some checks failed
Create Release & Upload Assets / Upload Assets To Gitea w/ goreleaser (push) Failing after 2m0s
2025-10-06 00:57:10 +00:00
William Gill
605698cff7 latest.png hack
Some checks failed
Create Release & Upload Assets / Upload Assets To Gitea w/ goreleaser (push) Failing after 2m17s
2025-10-06 00:15:11 +00:00

View File

@@ -8,6 +8,7 @@ import (
"image/png"
"net/http"
"os"
"os/exec"
"strconv"
"time"
@@ -35,7 +36,7 @@ func CaptureImage() bool {
if resp.Body != nil {
timestamp := time.Now()
filename := timestamp.Format("/axis-2006-01-02_15-04-05.jpg")
filename := timestamp.Format("/axis-2006-01-02_15-04-05.png")
img, _, err := image.Decode(resp.Body)
if err != nil {
@@ -53,6 +54,13 @@ func CaptureImage() bool {
log.Fatal().Err(err).Msgf("")
} else {
log.Info().Msg("New image created: " + config.StoragePath + filename)
cmd := exec.Command("cp", config.StoragePath+filename, config.StoragePath+"/latest.png")
err := cmd.Run()
if err != nil {
log.Error().Msgf("Error copying to latest.")
}
}
}