From 57cedd37bbc68ec7fad39b2cebdb2fe45f236ef7 Mon Sep 17 00:00:00 2001 From: Thibaut Schmitt Date: Tue, 8 Apr 2025 15:27:10 +0200 Subject: [PATCH] Update rsvgConvertNotFound error to update brew install command line --- Sources/ResgenSwift/Images/ImagesError.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/ResgenSwift/Images/ImagesError.swift b/Sources/ResgenSwift/Images/ImagesError.swift index 8dcbc57..36c98d9 100644 --- a/Sources/ResgenSwift/Images/ImagesError.swift +++ b/Sources/ResgenSwift/Images/ImagesError.swift @@ -36,7 +36,7 @@ enum ImagesError: Error { return "error: [\(Images.toolName)] Getting file attributes of \(filename) failed with error: \(errorDescription)" case .rsvgConvertNotFound: - return "error: [\(Images.toolName)] Can't find rsvg-convert (can be installed with 'brew remove imagemagick && brew install imagemagick --with-librsvg')" + return "error: [\(Images.toolName)] Can't find rsvg-convert (can be installed with 'brew remove imagemagick && brew install librsvg')" case .writeFile(let subErrorDescription, let filename): return "error: [\(Images.toolName)] An error occured while writing content to \(filename): \(subErrorDescription)"