Removed the default value from the "archivesPath" property of the AppOptions type in the app target.

This commit is contained in:
Javier Cicchelli 2025-04-01 00:24:42 +02:00
parent e3c2b5d76d
commit 1ccc2966e7

View File

@ -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(