summaryrefslogtreecommitdiff
path: root/sloccount
diff options
context:
space:
mode:
authorDavid A. Wheeler <dwheeler@dwheeler.com>2013-09-02 18:07:15 -0400
committerDavid A. Wheeler <dwheeler@dwheeler.com>2013-09-02 18:07:15 -0400
commitb01dd02bf67b722fb76b00f8750b1e2ee26db7e1 (patch)
treecbbbebef56704c7eb237b771fa737b5a35cb74c4 /sloccount
parent5c545e92fb2c41ca6c8d5e8ef3cfb8d5babb9107 (diff)
downloadsloccount-git-b01dd02bf67b722fb76b00f8750b1e2ee26db7e1.tar.gz
Put verbose messages to STDERR [from Dirk Jagmann]
- Send verbos messages to STDERR, not stdout. - https://sourceforge.net/p/sloccount/patches/5/
Diffstat (limited to 'sloccount')
-rwxr-xr-xsloccount8
1 files changed, 4 insertions, 4 deletions
diff --git a/sloccount b/sloccount
index 9491227..99dc028 100755
--- a/sloccount
+++ b/sloccount
@@ -225,15 +225,15 @@ in
esac
cd $datadir
- if echo "Categorizing files." &&
+ if echo "Categorizing files." 1>&2 &&
break_filelist --duplistfile sloc_hashes $duplicate_control $autogen * &&
- echo "Computing results." &&
+ echo "Computing results." 1>&2 &&
compute_all *
then
display_results=y
fi
- echo
- echo
+ echo 1>&2
+ echo 1>&2
;;
esac