From 7a6f3b6f965198cea63d141b9fbaf7ef177b6a1e Mon Sep 17 00:00:00 2001 From: Joshua Ismael Haase Hernández Date: Tue, 19 Oct 2010 14:44:02 -0500 Subject: Use XDG_CONFIG_HOME and source that file if it exists --- libremakepkg | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libremakepkg') diff --git a/libremakepkg b/libremakepkg index 0881b10..5ea64de 100755 --- a/libremakepkg +++ b/libremakepkg @@ -22,13 +22,13 @@ if [ $UID -ne 0 ]; then echo "This script must be run as root" exit 1 fi -if [ ! -e /etc/libretools.conf ]; then - echo "Config file doesn't exists" - exit 1 +custom_config=$XDG_CONFIG_HOME/libretools/libretools.conf +if [-e $custom_config]; then + source $custom_config +else + source /etc/libretools.conf fi -source /etc/libretools.conf - echo "Updating the main chroot" mkarchroot -u -c ${CACHEDIR} ${CHROOTDIR}/${CHROOT} -- cgit v1.2.3-54-g00ecf