From 0410a44f0bf45185687972a23964345a2f2c6be2 Mon Sep 17 00:00:00 2001 From: Kristo Copani Date: Sat, 30 Nov 2024 18:18:47 +0200 Subject: [PATCH] fixeeees --- install/firefly-install.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/install/firefly-install.sh b/install/firefly-install.sh index e1507bf7..bc3093d7 100644 --- a/install/firefly-install.sh +++ b/install/firefly-install.sh @@ -20,7 +20,7 @@ $STD apt-get install -y \ sudo curl -sSLo /usr/share/keyrings/deb.sury.org-php.gpg https://packages.sury.org/php/apt.gpg echo "deb [signed-by=/usr/share/keyrings/deb.sury.org-php.gpg] https://packages.sury.org/php/ bookworm main" >/etc/apt/sources.list.d/php.list -apt-get update +$STD apt-get update $STD apt-get install -y \ apache2 \ php8.3 \ @@ -63,11 +63,11 @@ sed -i "s/DB_HOST=.*/DB_HOST=localhost/" /opt/firefly-iii/.env sed -i "s/DB_PASSWORD=.*/DB_PASSWORD=$DB_PASS/" /opt/firefly-iii/.env echo "export COMPOSER_ALLOW_SUPERUSER=1" >> ~/.bashrc source ~/.bashrc -composer install --no-dev --no-plugins --no-interaction -php artisan firefly-iii:upgrade-database -php artisan firefly-iii:correct-database -php artisan firefly-iii:report-integrity -php artisan firefly-iii:laravel-passport-keys +$STD composer install --no-dev --no-plugins --no-interaction +$STD php artisan firefly-iii:upgrade-database --no-interaction --force +$STD php artisan firefly-iii:correct-database --no-interaction --force +$STD php artisan firefly-iii:report-integrity --no-interaction --force +$STD php artisan firefly-iii:laravel-passport-keys --no-interaction --force echo "${RELEASE}" >"/opt/${APPLICATION}_version.txt" msg_ok "Installed Firefly III"