From f3d8717e694dfdbd4ac6e325c7c4b477e5ed3453 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Floure?= Date: Thu, 18 Feb 2021 14:32:41 +0100 Subject: [PATCH] [__matrix_synapse] fix typo in __apt_backports call --- type/__matrix_synapse/manifest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/type/__matrix_synapse/manifest b/type/__matrix_synapse/manifest index ef552ba..9fad88e 100755 --- a/type/__matrix_synapse/manifest +++ b/type/__matrix_synapse/manifest @@ -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