1
0
Fork 0
mirror of https://github.com/vbatts/dedupe-linker.git synced 2024-09-27 12:24:01 +00:00

main: minimize root path

Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
This commit is contained in:
Vincent Batts 2016-09-13 09:54:30 -04:00
parent c67d7baba3
commit 7e2999aa4e

View file

@ -14,7 +14,7 @@ import (
) )
var ( 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") flVarBase = flag.String("b", varBaseDir, "base directory where files are duplicated")
flCipher = flag.String("c", "sha1", "block cipher to use (sha1, or sha256)") flCipher = flag.String("c", "sha1", "block cipher to use (sha1, or sha256)")