fix bad dir permission

This commit is contained in:
Umputun
2017-12-29 00:06:56 -06:00
parent 59987af785
commit 88d692aeaf
+2 -2
View File
@@ -127,8 +127,8 @@ func makeBoltStore() store.Interface {
}
func makeDirs() {
_ = os.MkdirAll(opts.BoltPath, 700)
_ = os.MkdirAll(opts.BackupLocation, 700)
_ = os.MkdirAll(opts.BoltPath, 0700)
_ = os.MkdirAll(opts.BackupLocation, 0700)
}
func setupLog(dbg bool) {