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