From 8fd1b92a2c976d6353b3a9a5624b23e9dd2ea023 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Mon, 25 Aug 2014 19:40:10 +0200 Subject: [PATCH] No need to redirect the standard output from "sh -n" --- doc/scripts/shlint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/scripts/shlint.sh b/doc/scripts/shlint.sh index d202afc..862baa8 100755 --- a/doc/scripts/shlint.sh +++ b/doc/scripts/shlint.sh @@ -73,6 +73,6 @@ target="$1" ret=0 > "$target" for i in $($FIND "../doc" "../src" "../tests" "../tools" -name '*.sh'); do - $DEBUG $SHLINT "$i" > "$DEVNULL" 2>> "$target" || ret=2 + $DEBUG $SHLINT "$i" 2>> "$target" || ret=2 done exit $ret