Move repository to a private directory

This commit is contained in:
Evgeny Morozov 2017-02-24 20:16:11 +03:00
parent 8e580e3dad
commit c6db44ace7
No known key found for this signature in database
GPG key ID: 0CA3DE8CE6E23F4F
2 changed files with 4 additions and 3 deletions

View file

@ -96,8 +96,8 @@ struct GitCredential {
class PasswordStore {
static let shared = PasswordStore()
let storeURL = URL(fileURLWithPath: "\(Globals.documentPath)/password-store")
let tempStoreURL = URL(fileURLWithPath: "\(Globals.documentPath)/password-store-temp")
let storeURL = URL(fileURLWithPath: "\(Globals.repositoryPath)")
let tempStoreURL = URL(fileURLWithPath: "\(Globals.repositoryPath)-temp")
var storeRepository: GTRepository?
var gitCredential: GitCredential?