From 569598683e198704cfb02b9832b5972df532ea4d Mon Sep 17 00:00:00 2001 From: James Patrick Date: Fri, 22 Nov 2019 14:53:31 -0500 Subject: [PATCH] Fixed bad XDG CONFIG value. Not sure why I thought it would be DIR instead of HOME but I blame poorly executed theft. --- lib/shared.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/shared.mk b/lib/shared.mk index 1dcdb98..a2459de 100644 --- a/lib/shared.mk +++ b/lib/shared.mk @@ -15,7 +15,7 @@ return_val_truthy := && echo true || echo false cmd_exist = $(shell (($$+commands[$1])) $(return_val_truthy) ) # 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. # With this you can use `$(IS_MAC) && echo "I'm a Mac" || echo "I'm not a Mac"`