latest.png hack
Some checks failed
Create Release & Upload Assets / Upload Assets To Gitea w/ goreleaser (push) Failing after 2m17s

This commit is contained in:
William Gill
2025-10-06 00:15:11 +00:00
parent b9e4d928ea
commit 605698cff7

View File

@@ -8,6 +8,7 @@ import (
"image/png"
"net/http"
"os"
"os/exec"
"strconv"
"time"
@@ -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.")
}
}
}