From 7e2999aa4e3e18cd7aa817d967d4efbef4ff651a Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Tue, 13 Sep 2016 09:54:30 -0400 Subject: [PATCH] main: minimize root path Signed-off-by: Vincent Batts --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 2a7cbae..33217c1 100644 --- a/main.go +++ b/main.go @@ -14,7 +14,7 @@ import ( ) var ( - varBaseDir = filepath.Join(os.Getenv("HOME"), ".local/dedupe-linker/var") + varBaseDir = filepath.Join(os.Getenv("HOME"), ".dedupe-linker/") flVarBase = flag.String("b", varBaseDir, "base directory where files are duplicated") flCipher = flag.String("c", "sha1", "block cipher to use (sha1, or sha256)")