fix rel path error

This commit is contained in:
2025-07-31 21:23:44 +02:00
parent 95857356ab
commit f2fee0990b
2 changed files with 9 additions and 9 deletions

View File

@@ -124,7 +124,7 @@ func archiveIfChanged(gameID, srcDir, destTarGz, stateFile string) error {
defer f.Close()
if err := archive.Tar(f, srcDir); err != nil {
return fmt.Errorf("failed archiving files")
return fmt.Errorf("failed archiving files: %w", err)
}
now := time.Now().UTC().Format(time.RFC3339)