* - your email address will never be displayed on the site.
Topic History of: Running custom commands Max. showing the last posts - (Last post first)
Author
Message
Gavin Laking
A nice feature that you could add to ZigVersion would be the ability to execute a command/script before or after an operation. For example, I run php -l on all of my changed files as I'm coding and committing:
svn stat | grep 'php' | awk '{print "php -l " $2}' | sh
This could be placed into a little Bash script which I could then instruct ZigVersion to run before it allows a commit on a file or group of files. This for me would mean an end to silly parse errors because I forgot my trailing ;