8 lines
142 B
Bash
8 lines
142 B
Bash
#!/bin/bach
|
|
|
|
# update bare repos
|
|
git --git-dir=git-repositories/DOMAIN.git fetch origin prod:prod
|
|
# deploy prod
|
|
cd www/DOMAIN/app
|
|
./deploy.sh
|