From dc1fc47ffb659e23a859a4d1e48cd5a0bb0c5a58 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Sun, 2 Nov 2014 15:38:42 +0000 Subject: [PATCH] contrib/pre-commit: STDERR is the right output channel git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@6869 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- contrib/pre-commit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/pre-commit b/contrib/pre-commit index e3dca9fd6..768b60b32 100755 --- a/contrib/pre-commit +++ b/contrib/pre-commit @@ -17,7 +17,7 @@ use constant TAGS => qw{ul li code b}; my $log = `$svnlook log $arg $repos`; if($log !~ m/^.*:.*$/s) { - print << 'EOF'; + print STDERR << 'EOF'; A FHEM SVN comment must have the following format module: text-describing-the-change or @@ -89,6 +89,6 @@ sub err($$) { my ($fName, $txt) = @_; - print "*** $fName: $txt\n"; + print STDERR "*** $fName: $txt\n"; $exitCode = 1; }