1
下面是我的預提交鉤子代碼,用於檢查文本和打開的trac票證。文本檢查工作,但當分配恰巧從svnlook中獲取文本並將其放入變量$ LOG中時,我得到一個無法找到日誌的錯誤。我敢肯定,我只是精神上和做一些愚蠢的事情,但它避開了我爲什麼這不起作用。 任何幫助,將不勝感激。SVN預提交掛鉤失敗
REPOS="$1"
TXN="$2"
SVNLOOK=/usr/bin/svnlook
# Make sure that the log message contains some text.
$SVNLOOK log -t "$TXN" "$REPOS" | grep "[a-zA-Z0-9]" > /dev/null || exit 1
# Exit on all errors.
set -e
#ensure the commit is assciated to a TRAC ticket
TRAC_ENV="/trac"
LOG=$SVNLOOK log -t "$TXN" "$REPOS"
/usr/bin/python /trac/conf/trac-pre-commit-hook "$TRAC_ENV" "$LOG" || exit 1
該訣竅非常感謝你的快速反應 – peekay