This commit is contained in:
Max Goedjen 2023-07-23 17:17:27 -04:00 committed by GitHub
parent df10fa3912
commit 1d4ef12546
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -20,8 +20,10 @@ public class PublicKeyFileStoreController {
logger.log("Writing public keys to disk") logger.log("Writing public keys to disk")
if clear { if clear {
let validPaths = Set(secrets.map { publicKeyPath(for: $0) }).union(Set(secrets.map { sshCertificatePath(for: $0) })) let validPaths = Set(secrets.map { publicKeyPath(for: $0) }).union(Set(secrets.map { sshCertificatePath(for: $0) }))
let untracked = Set(try FileManager.default.contentsOfDirectory(atPath: directory) let contentsOfDirectory = (try? FileManager.default.contentsOfDirectory(atPath: directory)) ?? []
.map { "\(directory)/\($0)" }) let fullPathContents = contentsOfDirectory.map { "\(directory)/\($0)" }
let untracked = Set(fullPathContents)
.subtracting(validPaths) .subtracting(validPaths)
for path in untracked { for path in untracked {
try? FileManager.default.removeItem(at: URL(fileURLWithPath: path)) try? FileManager.default.removeItem(at: URL(fileURLWithPath: path))