aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbeber <beber>2005-12-01 13:34:07 +0000
committerbeber <beber>2005-12-01 13:34:07 +0000
commit3ccd99646c635f0001356d12d0c3c16ed4aa3508 (patch)
tree540c5e6e41d8e459b939738894029542ff264230
parentignore update (diff)
downloadespik-3ccd99646c635f0001356d12d0c3c16ed4aa3508.tar.xz
one line per things
-rw-r--r--sh/propset.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/sh/propset.sh b/sh/propset.sh
index 153b1f6..0f24cef 100644
--- a/sh/propset.sh
+++ b/sh/propset.sh
@@ -2,12 +2,18 @@
# All parameters will be then ignore by svn st
+export LC_ALL=C
+
if [ $# -lt 1 ]; then
echo "Give me some file to ignore"
exit -1
fi
-echo "$@" >> .svnignore
+while [ ! -z "$1" ]
+do
+ echo $1 >> .svnignore
+ shift
+done
svn commit -m "ignore update"