From dd6236bbcefeb4ba2c25b40b984a3f0712759e00 Mon Sep 17 00:00:00 2001 From: Kyle Robbertze Date: Mon, 14 Dec 2020 12:34:40 +0200 Subject: [PATCH] Fix Ubuntu condition checking for add-apt-repository --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index 79b8de7d8..60a5fe778 100755 --- a/install +++ b/install @@ -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