summaryrefslogtreecommitdiff
path: root/internal/queue/queue.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/queue/queue.go')
-rw-r--r--internal/queue/queue.go2
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