Mercurial > p > roundup > code
annotate scripts/notify-roundup/hg/notify-roundup @ 4204:ccb13ca51449 gsoc-2009
removed sh extension
| author | Pygi <pygi@users.sourceforge.net> |
|---|---|
| date | Mon, 13 Jul 2009 17:52:32 +0000 |
| parents | |
| 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" |
