Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Commit 39284b6

Browse files
authored
Update signer.swift
1 parent 4cfa114 commit 39284b6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Sources/prostore/signing/signer.swift

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -218,13 +218,10 @@ fileprivate class SigningManager {
218218

219219
private static func getAppFolder() -> URL {
220220
let fm = FileManager.default
221-
let documents = fm.urls(for: .documentDirectory, in: .userDomainMask).first!
222-
let appFolder = documents.appendingPathComponent("AppFolder")
221+
let appFolder = fm.urls(for: .documentDirectory, in: .userDomainMask).first!
223222
if !fm.fileExists(atPath: appFolder.path) {
224223
try? fm.createDirectory(at: appFolder, withIntermediateDirectories: true)
225224
}
226225
return appFolder
227226
}
228227
}
229-
230-

0 commit comments

Comments
 (0)