1
0
Fork 0

Remove GRUS_DIR flag

This commit is contained in:
Andinus 2020-04-06 22:19:08 +05:30
parent 58644f4ccc
commit af2a2cd8dc
Signed by: andinus
GPG Key ID: B67D55D482A799FD
1 changed files with 3 additions and 4 deletions

View File

@ -8,9 +8,9 @@ import (
)
// GetDir returns grus data directory. Check if the user has set
// GRUS_DIR, if not then check if XDG_DATA_HOME is set & if that is
// not set then assume it to be the default value which is
// $HOME/.local/share according to XDG Base Directory Specification.
// XDG_DATA_HOME is set & if that is not set then assume it to be the
// default value which is $HOME/.local/share according to XDG Base
// Directory Specification.
func GetDir() string {
cacheDir := SysDir()
@ -24,7 +24,6 @@ func GetDir() string {
// SysDir returns the system data directory, this is useful for unveil in
// OpenBSD.
func SysDir() string {
cacheDir := os.Getenv("GRUS_DIR")
if len(cacheDir) == 0 {
cacheDir = os.Getenv("XDG_DATA_HOME")
}