From 4fe890f6aeea63e0d9cf38b31095432aa1cea3f7 Mon Sep 17 00:00:00 2001 From: TommyTran732 <57488583+tommytran732@users.noreply.github.com> Date: Sun, 9 Aug 2020 23:14:18 -0400 Subject: [PATCH] Update Mobile Module to 1.0.7 --- install.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 04e9cbe..16c4366 100644 --- a/install.sh +++ b/install.sh @@ -1098,11 +1098,15 @@ upgrade_standalone_sftp(){ install_mobile(){ cd /var/www/pterodactyl composer config repositories.cloud composer https://packages.pterodactyl.cloud - composer require friendsofphp/php-cs-fixer 2.15.1 --dev composer require pterodactyl/mobile-addon --update-no-dev --optimize-autoloader php artisan migrate --force } +upgrade_mobile(){ + cd /var/www/pterodactyl + composer update pterodactyl/mobile-addon + php artisan migrate --force +} install_phpmyadmin(){ output "Installing phpMyAdmin..." @@ -1476,8 +1480,7 @@ case $installoption in ;; 9) install_mobile ;; - 10) cd /var/www/pterodactyl - composer update pterodactyl/mobile-addon + 10) upgrade_mobile ;; 11) install_phpmyadmin ;;