v2board/update.sh

23 lines
580 B
Bash
Raw Permalink Normal View History

2022-05-09 01:45:33 +08:00
#!/bin/bash
2023-05-20 20:50:53 +08:00
if [ ! -d ".git" ]; then
echo "Please deploy using Git."
exit 1
fi
if ! command -v git &> /dev/null; then
echo "Git is not installed! Please install git and try again."
exit 1
fi
git config --global --add safe.directory $(pwd)
2020-03-18 18:12:19 +08:00
git fetch --all && git reset --hard origin/master && git pull origin master
2021-08-10 12:37:37 +08:00
rm -rf composer.lock 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-10-14 15:27:11 +08:00
php composer.phar update -vvv
2020-03-18 18:12:19 +08:00
php artisan v2board:update
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