From f7be148d18a45d6be2b6484a39e70fa9e171b112 Mon Sep 17 00:00:00 2001 From: idk Date: Tue, 25 Dec 2018 07:14:53 -0500 Subject: [PATCH] fix perms --- conn/conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn/conn.go b/conn/conn.go index 4c50e85..f3f83e5 100644 --- a/conn/conn.go +++ b/conn/conn.go @@ -22,7 +22,7 @@ type Conn struct { func (c Conn) FindKeys() bool { 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 }