diff options
| author | Paul Buetow <paul@buetow.org> | 2024-10-02 11:06:51 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-10-02 11:06:51 +0300 |
| commit | 5c41467e63cb3ec20397dd1790a10ca3999204d3 (patch) | |
| tree | 7ea04b39c97d2fa05891fb58df3415bd4cbb47df /internal/queue | |
| parent | 87593db7993d1f3689d9602eed3ef095ac69cfb4 (diff) | |
fix
Diffstat (limited to 'internal/queue')
| -rw-r--r-- | internal/queue/queue.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/queue/queue.go b/internal/queue/queue.go index ae8e377..8d6350e 100644 --- a/internal/queue/queue.go +++ b/internal/queue/queue.go @@ -80,7 +80,7 @@ func queuePlatforms(args config.Args) error { // Queue ./db/queued/*.txt.STAMP.queued to ./db/platforms/PLATFORM/*.txt.STAMP.queued func queuePlatform(entryPath, gosDir, platform string) error { - destDir := filepath.Join(gosDir, "db/platform", strings.ToLower(platform)) + destDir := filepath.Join(gosDir, "db/platforms", strings.ToLower(platform)) destPath := filepath.Join(destDir, filepath.Base(entryPath)) postedFile := fmt.Sprintf("%s.posted", strings.TrimSuffix(destPath, ".queued")) |
