index : devtools32 | |
Archlinux32 fork of devtools | gitolite user |
summaryrefslogtreecommitdiff |
author | Brian Bidulock <bidulock@openss7.org> | 2017-11-18 22:53:37 -0700 |
---|---|---|
committer | Brian Bidulock <bidulock@openss7.org> | 2017-11-18 22:53:37 -0700 |
commit | 2a7b784e0158b46f6895bef1de6dc8b0e4145be9 (patch) | |
tree | a78af3b1b8f10c2082ce66fa5dd8d3c2268d6623 /arch-nspawn.in | |
parent | 19f091cce81215ec963de34f390d8f41897602e0 (diff) |
-rw-r--r-- | arch-nspawn.in | 6 |
diff --git a/arch-nspawn.in b/arch-nspawn.in index a0b00af..9c1961f 100644 --- a/arch-nspawn.in +++ b/arch-nspawn.in @@ -53,7 +53,11 @@ shift 1 [[ -z $working_dir ]] && die 'Please specify a working directory.' if [[ -z $cache_dir ]]; then - cache_dirs=($(pacman -v 2>&1 | grep '^Cache Dirs:' | sed 's/Cache Dirs:\s*//g')) + if [[ -z $pac_conf ]]; then + cache_dirs=($(pacman --config "$working_dir/etc/pacman.conf" -v 2>&1 | grep '^Cache Dirs:' | sed 's/Cache Dirs:\s*//g')) + else + cache_dirs=($(pacman --config "$pac_conf" -v 2>&1 | grep '^Cache Dirs:' | sed 's/Cache Dirs:\s*//g')) + fi else cache_dirs=("$cache_dir") fi |