Hey Ryan, On Tuesday 13 July 2010, Ryan Booz wrote: > Somehow I never saw this come through. Are you simply saying I need > to add "PATH=..." to my post-commit script before the > "agilo_svn_trac_commit.py" is run or something more?
Right! The problem is that the PATH variable is not set in svn commit scripts and we built the last Agilo release expecting a PATH variable exists. So the workaround is to add a PATH variable to the environment in the post-commit and pre-commit hook scripts like so: #!/bin/sh export PATH='/usr/bin:/bin' REPOS="$1" REV="$2" TRAC_ENV=/somewhere /path/to/agilo_svn_hook_commit.py -s post -e "$TRAC_ENV" -r "$REV" Cheers Robert -- Follow Agilo on Twitter: http://twitter.com/agiloforscrum Please support us by reviewing and voting on: http://userstories.com/products/8-agilo-for-scrum http://ohloh.net/p/agilo-scrum http://freshmeat.net/projects/agiloforscrum You have received this message because you are subscribed to the "Agilo for Scrum" Google Group. This group is focused on supporting Agilo for Scrum users and is moderated by agile42 GmbH <http://www.agile42.com>. To post to this group, send email to [email protected] To unsubscribe from this group, send an email to [email protected] For more options, visit this group at http://groups.google.com/group/agilo

