Fixed bad XDG CONFIG value.

Not sure why I thought it would be DIR instead of HOME but I blame
poorly executed theft.
This commit is contained in:
James Patrick 2019-11-22 14:53:31 -05:00
parent 5f28729298
commit 569598683e

View File

@ -15,7 +15,7 @@ return_val_truthy := && echo true || echo false
cmd_exist = $(shell (($$+commands[$1])) $(return_val_truthy) ) cmd_exist = $(shell (($$+commands[$1])) $(return_val_truthy) )
# Shortcut for the XDG dir if it exist. default to ~/.confg # Shortcut for the XDG dir if it exist. default to ~/.confg
XDG_DIR := $${XDG_CONFIG_DIR:-~/.config} XDG_DIR := $${XDG_CONFIG_HOME:-~/.config}
# Some things will OS specific. # Some things will OS specific.
# With this you can use `$(IS_MAC) && echo "I'm a Mac" || echo "I'm not a Mac"` # With this you can use `$(IS_MAC) && echo "I'm a Mac" || echo "I'm not a Mac"`