Set up svnperms pre-commit hook

本秂侑毒 提交于 2019-12-01 15:10:41

My guess is that the location of the python binary is not in $PATH for the svn server. The shabang line of svnperms.py reads:

#!/usr/bin/env python

But that assumes that the executable lies in the $PATH of the caller. If you don't have permissions to modify the runtime environment of your subversion server, try replacing python in the shabang line with the path given by which python when you run it interactively.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!