first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / scripts / rev_control / svn_set_binary.sh
1 #!/bin/bash
2 # clean out flags that hinder files being binary.
3 for i in $*; do
4   echo "svn binary -> $i"
5   svn pd svn:executable "$i" >/dev/null 2>&1
6   svn pd svn:eol-style "$i" >/dev/null 2>&1
7   svn pd svn:keywords "$i" >/dev/null 2>&1
8 done
9