diff options
author | Andinus <andinus@nand.sh> | 2020-04-08 01:44:15 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-04-08 01:44:15 +0530 |
commit | 34adb3a7e676a43cd692b4da14398a7d1b0be822 (patch) | |
tree | 52d071f21eda3fdeb9768ecefb41df1c7ee551e8 /storage/getdir_darwin.go | |
parent | 47d22337b3a178b14e1cac287799f2c9dfb336e6 (diff) | |
download | grus-34adb3a7e676a43cd692b4da14398a7d1b0be822.tar.gz |
Prepare for next rewrite
Diffstat (limited to 'storage/getdir_darwin.go')
-rw-r--r-- | storage/getdir_darwin.go | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/storage/getdir_darwin.go b/storage/getdir_darwin.go deleted file mode 100644 index 8d6ebbf..0000000 --- a/storage/getdir_darwin.go +++ /dev/null @@ -1,22 +0,0 @@ -// +build darwin - -package storage - -import ( - "fmt" - "os" -) - -// GetDir returns grus data directory. Default data directory on -// macOS is $HOME/Library. -func GetDir() string { - cacheDir := fmt.Sprintf("%s/%s", - os.Getenv("HOME"), - "Library") - - // Grus cache directory is cacheDir/grus - grusCacheDir := fmt.Sprintf("%s/%s", cacheDir, - "grus") - - return grusCacheDir -} |