diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-05-28 10:49:00 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-05-28 10:49:00 +0200 |
commit | 06d1b08129e653555ecec3d16079e990103babd1 (patch) | |
tree | 59732cc0c4f1072251c35b3efb5cde98bc30ba0d /bin | |
parent | cb1e2ac062c8f00fce0fe0d62ce784d9c1d9e3f5 (diff) |
pkg: Support the XDG basedir spec as well (~/.config/pkg/pkg.conf)
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/pkg | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -70,7 +70,9 @@ function clear_line { } # Read local configuration -if [[ -r $HOME/.pkg.conf ]] { +if [[ -r ${XDG_CONFIG_HOME-$HOME/.config/pkg/pkg.conf} ]] { + source ${XDG_CONFIG_HOME-$HOME/.config/pkg/pkg.conf} +} elif [[ -r $HOME/.pkg.conf ]] { source $HOME/.pkg.conf } |