[__matrix_synapse] fix typo in __apt_backports call

This commit is contained in:
fnux 2021-02-18 14:32:41 +01:00
parent 6487839cf5
commit f3d8717e69
No known key found for this signature in database
GPG Key ID: 4502C902C00A1E12
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ case "$os" in
# Enable debian-backports for debian Buster, as the 'stable'
# matrix-synapse package is ways too old (< 1.0).
apt_target_release=buster-backports
__apt_backport
__apt_backports
;;
bullseye|sid)
# As of writting (2021-02), the default matrix-synapse of those
@ -302,7 +302,7 @@ esac
# backports situation.
synapse_req=
if [ -n "$apt_target_release" ]; then
require="__apt_backport" __package_apt "$synapse_pkg" \
require="__apt_backports" __package_apt "$synapse_pkg" \
--target-release "$apt_target_release"
synapse_req="__package_apt/$synapse_pkg"
else