mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-22 10:38:14 -05:00
11 lines
250 B
Bash
11 lines
250 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" ]; then
|
||
|
chown -R www $(pwd);
|
||
|
fi
|