Page MenuHomePhabricator
Paste P409

bootstrap-git-deploy.bash
ActivePublic

Authored by yuvipanda on Mar 17 2015, 9:18 PM.
Referenced Files
F99596: bootstrap-git-deploy.bash
Mar 17 2015, 9:18 PM
Subscribers
None
#!/bin/bash
cd /srv/deployment
for DIR in *; do
cd /srv/deployment/$DIR
for SUBDIR in *; do
cd /srv/deployment/$DIR/$SUBDIR
git pull origin master
git submodule update --init
git deploy start
yes | git deploy sync
git update-server-info
done
done

Event Timeline

yuvipanda changed the title of this paste from untitled to bootstrap-git-deploy.bash.
yuvipanda updated the paste's language from autodetect to bash.
yuvipanda added projects: Staging, Deployments.