Created
December 22, 2010 16:05
-
-
Save jollyroger/751683 to your computer and use it in GitHub Desktop.
Subversion post-commit hook for buildbot.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Subversion post-commit hook. | |
# | |
# This script will update files on the development web-server transparently | |
# without any files to be deleted before sync. | |
REV=$2 | |
REPOS=$1 | |
/usr/share/buildbot/contrib/svn_buildbot.py --repository "$REPOS" --revision "$REV" --bbserver 123.123.123.123 --bbport 9989 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment