annotate scripts/notify-roundup/hg/notify-roundup @ 4209:d8ebd781cee3
gsoc-2009
Renamed revision info to svn_revision_info
| author |
Pygi <pygi@users.sourceforge.net> |
| date |
Mon, 13 Jul 2009 20:32:36 +0000 |
| parents |
ccb13ca51449 |
| children |
|
| rev |
line source |
|
4204
|
1 #!/bin/bash
|
|
|
2 PYTHON=/usr/bin/python
|
|
|
3 NOTIFY=/path/to/your/notify-roundup.py
|
|
|
4 CONFIG=/path/to/your/notify-roundup.ini
|
|
|
5 REPOS=`/bin/pwd`
|
|
|
6 CMD="/usr/bin/hg log `/bin/pwd` --rev=tip"
|
|
|
7 REV=`$CMD | grep changeset`
|
|
|
8 PYTHONPATH=/path/to/your/roundup/instance "$PYTHON" "$NOTIFY" "$CONFIG" "$REPOS" "$REV"
|