mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-22 10:38:14 -05:00
10 lines
277 B
Bash
10 lines
277 B
Bash
#!/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
|
|
|
|
if [ -f "/etc/init.d/bt" ] || [ -f "/.dockerenv" ]; then
|
|
chown -R www:www $(pwd);
|
|
fi |