Parent Directory | Revision Log
allow restricting commits to a user
1 | #!/bin/sh |
2 | |
3 | REP="$1" |
4 | TXN="$2" |
5 | |
6 | author=$(svnlook author -t "$TXN" "$REP") |
7 | |
8 | if [ "$author" != '<%= restricted_to_user %>' ]; then |
9 | echo "this repository is restrected to user <%= restricted_to_user %>" >&2 |
10 | exit 1 |
11 | fi |
12 |
ViewVC Help | |
Powered by ViewVC 1.1.30 |