diff --git a/Sources/App/Config.swift b/Sources/App/Config.swift index 1c2e28c..cd8acd6 100644 --- a/Sources/App/Config.swift +++ b/Sources/App/Config.swift @@ -27,10 +27,7 @@ struct Config: Codable { guard !logPath.hasPrefix("/") else { return .init(fileURLWithPath: logPath) } - guard #available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *) else { - return resourcesDirectory.appendingPathComponent(logPath) - } - return resourcesDirectory.appending(path: logPath) + return resourcesDirectory.appendingPathComponent(logPath) } }