summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-12-20 16:11:21 +0000
committerRichard van der Hoff <richard@matrix.org>2018-12-20 16:11:21 +0000
commitbdc44b99a2565f72012e189f2cf8364992448a18 (patch)
tree54897bb08d71e262da6238423736e9a3f604da31
parentClarify that py2 packages will continue to exist (diff)
downloadsynapse-bdc44b99a2565f72012e189f2cf8364992448a18.tar.xz
buster is a thing
-rwxr-xr-xdocker/build_debian_packages.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/docker/build_debian_packages.sh b/docker/build_debian_packages.sh
index eafed4ac41..08c68dd46a 100755
--- a/docker/build_debian_packages.sh
+++ b/docker/build_debian_packages.sh
@@ -14,7 +14,14 @@ set -ex
 cd `dirname $0`
 
 if [ $# -lt 1 ]; then
-    DISTS=(debian:stretch debian:sid ubuntu:xenial ubuntu:bionic ubuntu:cosmic)
+    DISTS=(
+        debian:stretch
+        debian:buster
+        debian:sid
+        ubuntu:xenial
+        ubuntu:bionic
+        ubuntu:cosmic
+    )
 else
     DISTS=("$@")
 fi