From eddc4fddebfbea1c2dbd32253c29bbfd5f5d22dd Mon Sep 17 00:00:00 2001 From: edgarroncero Date: Tue, 11 Feb 2025 20:32:58 +0100 Subject: [PATCH] Fixed malformed apt syntax --- app/install-dependencies.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/install-dependencies.sh b/app/install-dependencies.sh index cc6ccd8..0652942 100755 --- a/app/install-dependencies.sh +++ b/app/install-dependencies.sh @@ -1,4 +1,4 @@ #!/bin/sh -/usr/sbin/apt-get install php8.2 php8.2-common php8.2-fpm -y # PHP -/usr/sbin/apt-get install vim file bash-completion procps nginx screen git less -y # Utils -/usr/sbin/apt-get install mariadb-client mariadb-server -y # MariaDB Server + Client +apt-get install php8.2 php8.2-common php8.2-fpm -y # PHP +apt-get install vim file bash-completion procps nginx screen git less -y # Utils +apt-get install mariadb-client mariadb-server -y # MariaDB Server + Client