diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2019-06-20 09:13:37 +0200 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2019-06-20 09:13:37 +0200 |
commit | 52a852da02a52e9275b3c15575946592d36992ef (patch) | |
tree | b66fc2eb49220ede6eb76ae1e56bb9e9b91c176c /bin | |
parent | 856244bc1cd615c35477a12a278c5d107bdae353 (diff) | |
download | builder-52a852da02a52e9275b3c15575946592d36992ef.tar.xz |
set archbuild_chroots to default if not set in configuration
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/build-packages | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bin/build-packages b/bin/build-packages index 5203fc8..077fc2d 100755 --- a/bin/build-packages +++ b/bin/build-packages @@ -476,6 +476,9 @@ while [ "${count}" -ne 0 ] && \ fi fi + if test "x${archbuild_chroots}" = "x"; then + archbuild_chroots='/var/lib/archbuild' + fi if echo "${straw}" | \ grep -qF ':clean_chroot:'; then outerParameters="-c -r ${archbuild_chroots}" |