v2board/init.sh

11 lines
251 B
Bash
Raw Permalink Normal View History

2022-05-09 01:45:33 +08:00
#!/bin/bash
2021-08-10 12:37:37 +08:00
rm -rf composer.phar
2021-10-13 21:00:21 +08:00
wget https://github.com/composer/composer/releases/latest/download/composer.phar -O composer.phar
2020-04-02 22:00:24 +08:00
php composer.phar install -vvv
php artisan v2board:install
2022-05-09 01:45:33 +08:00
if [ -f "/etc/init.d/bt" ]; then
2022-05-10 14:16:04 +08:00
chown -R www $(pwd);
2022-05-09 01:45:33 +08:00
fi