From f425cf4d341dd1300adb7caed1083793e5cb6d0d Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Sat, 20 Aug 2022 16:41:59 -0400 Subject: Add the ability to build for testing and stable releases. --- auto/config | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/auto/config b/auto/config index 8b1fa45..a0d2158 100755 --- a/auto/config +++ b/auto/config @@ -22,6 +22,14 @@ while [ $# -gt 0 ]; do ;; --testing) dist="testing" + lb_opts="$lb_opts --security false" + lb_opts="$lb_opts --updates false" + ;; + --stable) + dist="$(debian-distro-info --stable || echo stable)" + lb_opts="$lb_opts --security true" + lb_opts="$lb_opts --updates true" + lb_opts="$lb_opts --backports true" ;; *) temp="$temp "'"'"$arg"'"' -- cgit v1.2.3