diff options
| author | 2022-08-20 16:41:59 -0400 | |
|---|---|---|
| committer | 2022-08-20 16:41:59 -0400 | |
| commit | f425cf4d341dd1300adb7caed1083793e5cb6d0d (patch) | |
| tree | 5c78787d448c014f00d8487d94d93f7c70d75d2d /auto | |
| parent | ac9451ca69c04b41ad03193a49b357da0173dbb1 (diff) | |
Add the ability to build for testing and stable releases.
Diffstat (limited to 'auto')
| -rwxr-xr-x | auto/config | 8 |
1 files changed, 8 insertions, 0 deletions
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"'"' |
