fix perms
This commit is contained in:
parent
c91af60622
commit
f7be148d18
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ type Conn struct {
|
||||||
func (c Conn) FindKeys() bool {
|
func (c Conn) FindKeys() bool {
|
||||||
if _, err := os.Stat(c.Path()); os.IsNotExist(err) {
|
if _, err := os.Stat(c.Path()); os.IsNotExist(err) {
|
||||||
if _, err := os.Stat(c.path); os.IsNotExist(err) {
|
if _, err := os.Stat(c.path); os.IsNotExist(err) {
|
||||||
os.MkdirAll(c.path, os.ModeDir)
|
os.MkdirAll(c.path, 0755)
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue