diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2009-04-24 17:10:04 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-04-24 17:10:04 +0200 |
commit | 40f3ef6ec5949f32cc8b03e4806b0f6a2097fef6 (patch) | |
tree | 09c8a3241553c3d993b581bcf6560ea6686b2666 /bin/pkg | |
parent | 7a6ddeb4c0be39ea5bbc848cfedc014b24150dad (diff) |
pkg: Check for -r instead of -f when reading the config
Diffstat (limited to 'bin/pkg')
-rwxr-xr-x | bin/pkg | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ function clear_line { } # Read local configuration -if [[ -f $HOME/.pkg.conf ]] { +if [[ -r $HOME/.pkg.conf ]] { source $HOME/.pkg.conf } |