summaryrefslogtreecommitdiff
path: root/internal/queue/queue.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-11-19 22:46:05 +0200
committerPaul Buetow <paul@buetow.org>2024-11-19 22:46:05 +0200
commit836d21a7c43f4ce84dfa1ada0552989be4a43ca9 (patch)
treefe6dc637c2c916e10b1beff31d687edf0f994503 /internal/queue/queue.go
parent1550fbf9c2b0602c4675f25cd92e389593894e58 (diff)
use of platform aliases
Diffstat (limited to 'internal/queue/queue.go')
-rw-r--r--internal/queue/queue.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/queue/queue.go b/internal/queue/queue.go
index 40cc084..aa63c71 100644
--- a/internal/queue/queue.go
+++ b/internal/queue/queue.go
@@ -11,6 +11,7 @@ import (
"codeberg.org/snonux/gos/internal/config"
"codeberg.org/snonux/gos/internal/entry"
"codeberg.org/snonux/gos/internal/oi"
+ "codeberg.org/snonux/gos/internal/platforms"
"codeberg.org/snonux/gos/internal/timestamp"
)
@@ -110,8 +111,8 @@ func queuePlatforms(args config.Args) error {
}
// Queue ./db/queued/*.txt.STAMP.queued to ./db/platforms/PLATFORM/*.txt.STAMP.queued
-func queuePlatform(en entry.Entry, gosDir, platform string) error {
- destDir := filepath.Join(gosDir, "db/platforms", strings.ToLower(platform))
+func queuePlatform(en entry.Entry, gosDir string, platform platforms.Platform) error {
+ destDir := filepath.Join(gosDir, "db/platforms", platform.String())
destPath := filepath.Join(destDir, filepath.Base(en.Path))
postedFile := fmt.Sprintf("%s.posted", strings.TrimSuffix(destPath, ".queued"))