From 1ccc2966e7c94c1fe9bcb62f9bd4d257e6bd8827 Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Tue, 1 Apr 2025 00:24:42 +0200 Subject: [PATCH] Removed the default value from the "archivesPath" property of the AppOptions type in the app target. --- App/Sources/Options/AppOptions.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/App/Sources/Options/AppOptions.swift b/App/Sources/Options/AppOptions.swift index 9e2cef0..22547cf 100644 --- a/App/Sources/Options/AppOptions.swift +++ b/App/Sources/Options/AppOptions.swift @@ -11,9 +11,9 @@ extension Doxy { /// A path to the location of the DocC archives in the local file system. @Option( name: .long, - help: "A path to the location of the DocC archives in the local file system. Defaults to `Resources/Archives`." + help: "A path to the location of the DocC archives in the local file system." ) - var archivesPath: String = "Resources/Archives" + var archivesPath: String /// A hostname to bind the application to. @Option(