summaryrefslogtreecommitdiff
path: root/Dh_Haskell.sh
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2015-04-28 21:34:10 +0000
committerJoachim Breitner <mail@joachim-breitner.de>2015-04-28 21:34:10 +0000
commit592cfe183b06717f012d5b876258130e3d7ac249 (patch)
tree8b27467baeb40c7601544a8335d07835ef43b7ce /Dh_Haskell.sh
parenta300c6a7ca38041e73db81d9987782f4d31e7b2d (diff)
Do not send diagnostic output to stdout; use stderr
Diffstat (limited to 'Dh_Haskell.sh')
-rw-r--r--Dh_Haskell.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/Dh_Haskell.sh b/Dh_Haskell.sh
index cf1a28f..2e00e18 100644
--- a/Dh_Haskell.sh
+++ b/Dh_Haskell.sh
@@ -1,7 +1,7 @@
run () {
- echo -n "Running"
- printf " %q" "$@"
- echo
+ echo -n "Running" >&2
+ printf " %q" "$@" >&2
+ echo >&2
"$@"
}