From 85d7841f998a52275f8841ec80eef68ce91c2f16 Mon Sep 17 00:00:00 2001 From: Zach Date: Fri, 27 Sep 2024 15:26:58 -0600 Subject: [PATCH] Fix double slash is path (#105) --- .../Application/Types/Helper/FileManager+AppState.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/AppState/Application/Types/Helper/FileManager+AppState.swift b/Sources/AppState/Application/Types/Helper/FileManager+AppState.swift index c7346cd..98a965c 100644 --- a/Sources/AppState/Application/Types/Helper/FileManager+AppState.swift +++ b/Sources/AppState/Application/Types/Helper/FileManager+AppState.swift @@ -10,7 +10,7 @@ extension FileManager { #if !os(Linux) && !os(Windows) if #available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *) { - return "\(path.path())/App" + return path.appending(path: "App").path() } else { return "\(path.path)/App" }