diff options
| author | Paul Buetow <paul@buetow.org> | 2024-10-17 10:38:40 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2024-10-17 10:38:40 +0300 |
| commit | 563ea5dbaaa77e59939812d6825d54cf829db8eb (patch) | |
| tree | 1518d99868e86357f4ae81c0946f209adad4d8c1 /internal/queue/queue.go | |
| parent | a66b2114ee9fb9078d6f3c12566d7178e0662903 (diff) | |
implement sizeLimit per platform
Diffstat (limited to 'internal/queue/queue.go')
| -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 73d5789..ddd3136 100644 --- a/internal/queue/queue.go +++ b/internal/queue/queue.go @@ -65,7 +65,7 @@ func queuePlatforms(args config.Args) error { } for filePath := range ch { - for _, platform := range args.Platforms { + for platform := range args.Platforms { if newShareTags(args, filePath).IsExcluded(platform) { log.Println("Not queueing entry", filePath, "to platform", platform, "as it is excluded") continue |
