Merge pull request #1130 from paddatrapper/bug/fix-if-ubuntu

Fix Ubuntu condition checking for add-apt-repository
This commit is contained in:
Lucas Bickel 2020-12-22 16:29:27 +01:00 committed by GitHub
commit 6c4b1b5e71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -712,7 +712,7 @@ if [ "$ignore_dependencies" = "f" ]; then
loud " * Installing External Dependencies * "
loud "-----------------------------------------------------"
if [ $is_ubuntu_dist ]; then
if $is_ubuntu_dist; then
loudCmd "add-apt-repository -y ppa:libretime/libretime"
fi