bash - svnnotify html color diff -
i'm using svnnotify
send notification email upon commits. have following script on repo's hooks/post-commit
:
#!/bin/sh repos="$1" rev="$2" address in $(/bin/cat /var/svn/teachbyapp/hooks/addressee.list) /usr/local/bin/svnnotify \ -r $rev \ -c \ -d \ --diff-encoding utf8 \ -h html::colordiff \ -p $repos \ -t "$address" \ --from svn@factory.e-levelcom.com done
it works balck , white diff (no colors @ all). added lines underlined whereas removed lines have strike-through format. nothing else, no color @ all. how can colored diff? this
Comments
Post a Comment