Fix bundle IDs

This commit is contained in:
Brandon Evans 2020-12-22 21:25:49 -07:00
parent 7973ff50ea
commit 155c62de77
No known key found for this signature in database
GPG key ID: D58A4B8DB64F8E93
2 changed files with 2 additions and 2 deletions

View file

@ -135,7 +135,7 @@ public struct Logging {
}
public struct Keychain {
private static let keychain = KeychainAccess.Keychain(service: "com.robotsandpencils.xcodes")
private static let keychain = KeychainAccess.Keychain(service: "com.robotsandpencils.XcodesApp")
public var getString: (String) throws -> String? = keychain.getString(_:)
public func getString(_ key: String) throws -> String? {

View file

@ -1,6 +1,6 @@
import Path
extension Path {
static let xcodesApplicationSupport = Path.applicationSupport/"com.robotsandpencils.xcodes"
static let xcodesApplicationSupport = Path.applicationSupport/"com.robotsandpencils.XcodesApp"
static let cacheFile = xcodesApplicationSupport/"available-xcodes.json"
}