diff options
author | Erich Eckner <git@eckner.net> | 2018-04-03 15:16:05 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2018-04-03 15:16:05 +0200 |
commit | dbc7e5b78a8fad011f8759dcb5e419c101429244 (patch) | |
tree | 7d75c32c32dbd0d5e3a4d2f7da6576eea6549eaa /bin/ii-connect | |
parent | 9a46844693909ac5c82298d98ec81a75304e1e5a (diff) | |
download | builder-dbc7e5b78a8fad011f8759dcb5e419c101429244.tar.xz |
bin/ii-connect: use correct config file
Diffstat (limited to 'bin/ii-connect')
-rwxr-xr-x | bin/ii-connect | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ii-connect b/bin/ii-connect index bb775a9..4050bd0 100755 --- a/bin/ii-connect +++ b/bin/ii-connect @@ -94,7 +94,7 @@ if [ "$1" = 'watch' ]; then p ' "${out_file}" | \ while read -r line; do - if ! reason=$(pkgfile "${line}"); then + if ! reason=$(pkgfile -C "${base_dir}/conf/pkgfile.pacman32.conf" "${line}"); then reason="Huh, I don't know that one." fi if [ "$(echo "${reason}" | wc -l)" -le 5 ]; then |