mirror of
https://github.com/YGGverse/howtools.git
synced 2026-03-31 09:35:31 +00:00
17 lines
469 B
Bash
17 lines
469 B
Bash
#!/bin/bash
|
|
|
|
# Download latest β-Doku codebase and upgrade composer dependencies
|
|
|
|
# =========================================================================
|
|
# Configuration
|
|
# =========================================================================
|
|
|
|
cd /home/bdoku/bdoku
|
|
|
|
# =========================================================================
|
|
# Begin upgrade
|
|
# =========================================================================
|
|
|
|
git pull
|
|
|
|
composer update
|