From 0a8e9e26bac96bdfa4c01469b3c5c16980078f77 Mon Sep 17 00:00:00 2001 From: Muhammed Kaplan Date: Wed, 1 Feb 2023 15:35:52 +0100 Subject: [PATCH] hide chob folder. Fixes #24 --- helpers/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/config.go b/helpers/config.go index 3c9dfb3..4a18049 100644 --- a/helpers/config.go +++ b/helpers/config.go @@ -9,7 +9,7 @@ var VERSION string = "1.0.0" func ChobPath() string { usr, _ := user.Current() - var Path string = path.Join(usr.HomeDir, "chob") + var Path string = path.Join(usr.HomeDir, ".chob") return Path }