On the wiki page
http://projects.puppetlabs.com/projects/1/wiki/Puppet_Version_Control, the SVN
Pre-Commit Hook script needs to be fixed to not check the syntax on files
getting deleted.
The following line:
$SVNLOOK changed -t "$TXN" "$REPOS" | awk '{print $2}' | grep '\.pp$' | while
read line
needs to be:
$SVNLOOK changed -t "$TXN" "$REPOS" | grep -v ^D | awk '{print $2}' | grep
'\.pp$' | while read line
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en.