From c5963f8a21aa940828c9e9724b9e8689b88f21b5 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner Date: Thu, 15 May 2025 15:25:00 +0200 Subject: [PATCH] Try and silence composer --- install/debian-install.sh | 3 +++ misc/tools.func | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/install/debian-install.sh b/install/debian-install.sh index 02ba770..e2ece37 100644 --- a/install/debian-install.sh +++ b/install/debian-install.sh @@ -17,6 +17,9 @@ msg_info "Installing Dependencies" # $STD apt-get install -y gnupg2 msg_ok "Installed Dependencies" +install_php +install_composer + # Example Setting for Test #NODE_MODULE="pnpm@10.1,yarn" #RELEASE=$(curl_handler -fsSL https://api.github.com/repos/babybuddy/babybuddy/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') diff --git a/misc/tools.func b/misc/tools.func index b71d330..5250ef0 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -442,7 +442,7 @@ install_composer() { # Download and install latest composer curl -fsSL https://getcomposer.org/installer -o /tmp/composer-setup.php - php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer >/dev/null 2>&1