diff options
Diffstat (limited to 'src/git/install.sh')
-rwxr-xr-x | src/git/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/git/install.sh b/src/git/install.sh index 2463cc9..24e08e8 100755 --- a/src/git/install.sh +++ b/src/git/install.sh @@ -149,9 +149,9 @@ fi check_packages libpcre2-dev -if [ "${VERSION_CODENAME}" = "focal" ]; then +if [ "${VERSION_CODENAME}" = "focal" ] || [ "${VERSION_CODENAME}" = "bullseye" ]; then check_packages libpcre2-posix2 -elif [ "${VERSION_CODENAME}" = "bionic" ]; then +elif [ "${VERSION_CODENAME}" = "bionic" ] || [ "${VERSION_CODENAME}" = "buster" ]; then check_packages libpcre2-posix0 else check_packages libpcre2-posix3 |