From 3d361845abc2366e659d612f7d4d9f6d51f1e865 Mon Sep 17 00:00:00 2001 From: Christoph Hagen Date: Wed, 14 Dec 2022 09:51:46 +0100 Subject: [PATCH] Fix image logging bug --- Sources/Generator/Processing/GenerationResultsHandler.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Generator/Processing/GenerationResultsHandler.swift b/Sources/Generator/Processing/GenerationResultsHandler.swift index c0e6584..d09a472 100644 --- a/Sources/Generator/Processing/GenerationResultsHandler.swift +++ b/Sources/Generator/Processing/GenerationResultsHandler.swift @@ -338,7 +338,7 @@ final class GenerationResultsHandler { } private func markImageAsMissing(path: String, source: String) { - images.missing[source] = path + images.missing[path] = source } private func requireImage(at destination: String, generatedFrom source: String, requiredBy path: String, quality: Float, width: Int, height: Int?, alwaysGenerate: Bool) -> NSSize {