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