Xboard/init.sh

10 lines
277 B
Bash
Raw Normal View History

2023-11-17 01:44:01 -05:00
#!/bin/bash
rm -rf composer.phar
wget https://github.com/composer/composer/releases/latest/download/composer.phar -O composer.phar
php composer.phar install -vvv
php artisan xboard:install
2025-01-21 01:57:54 -05:00
if [ -f "/etc/init.d/bt" ] || [ -f "/.dockerenv" ]; then
chown -R www:www $(pwd);
2025-01-21 01:57:54 -05:00
fi