Revision
651
Author
boklm
Date
2010-12-21 20:36:10 +0100 (Tue, 21 Dec 2010)

Log Message

print the error on stderr so the user can see it

Modified Paths

Modified: puppet/modules/subversion/templates/no_binary
===================================================================
--- puppet/modules/subversion/templates/no_binary	2010-12-21 19:20:24 UTC (rev 650)
+++ puppet/modules/subversion/templates/no_binary	2010-12-21 19:36:10 UTC (rev 651)
@@ -8,7 +8,7 @@
 # here to avoid simple mistakes
 if svnlook changed -t "$TXN" "$REP" | grep -qi '\.\(gz\|bz2\|xz\|lzma\|Z\|7z\|tar\|tgz\|zip\|jpg\|gif\|png\|ogg\|mp3\|wav\|rar\|pdf\)$'
 then
-    echo 'no binary files allowed on this repository'
+    echo 'no binary files allowed on this repository' >&2
     exit 1
 fi