Browse Source

Print error message to stderr, not stdout

Alois Mahdal 7 years ago
parent
commit
d46b39ae0b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/make.skel

+ 1
- 1
src/make.skel View File

@@ -7,7 +7,7 @@ die() {
7 7
     #
8 8
     # Poor man's die() (mkit.sh has better)
9 9
     #
10
-    echo "$@" && exit 9
10
+    echo "$@" >&2 && exit 9
11 11
 }
12 12
 
13 13