From e8855efe7c37a0fce86b7cf32eb0515c6aa6d2a6 Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Wed, 5 May 2021 22:08:11 +0530 Subject: [PATCH] Fix self-hosted setup on linux --- src/scripts/linux.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scripts/linux.sh b/src/scripts/linux.sh index 4c6395c5..def4df7e 100644 --- a/src/scripts/linux.sh +++ b/src/scripts/linux.sh @@ -3,7 +3,7 @@ self_hosted_helper() { if ! command -v apt-fast >/dev/null; then sudo ln -sf /usr/bin/apt-get /usr/bin/apt-fast fi - install_packages apt-https-transport curl make software-properties-common unzip autoconf automake gcc g++ + install_packages apt-transport-https curl make software-properties-common unzip autoconf automake gcc g++ add_ppa ondrej/php } @@ -37,7 +37,7 @@ add_ppa() { # Function to update the package lists. update_lists() { if [ ! -e /tmp/setup_php ]; then - add_ppa >/dev/null 2>&1 + [ "${runner:?}" != "self-hosted" ] && add_ppa >/dev/null 2>&1 cleanup_lists sudo "$debconf_fix" apt-get update >/dev/null 2>&1 echo '' | sudo tee /tmp/setup_php >/dev/null 2>&1