summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtests/setenv4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/setenv b/tests/setenv
index 9f88e7bdb..ac6ef4c2d 100755
--- a/tests/setenv
+++ b/tests/setenv
@@ -1,7 +1,7 @@
#!/bin/bash
if [ ! -e "${PTXDIST_BOARDSETUP}" ]; then
- echo "Please run 'ptxdist boardsetup' first!"
+ echo "Please run 'ptxdist boardsetup' first!" >&2
exit 1
fi
@@ -10,7 +10,7 @@ if [ ! -r "${CONFFILE}.in" ]; then
if [ -r "`dirname "${CONFFILE}"`/config.in" ]; then
CONFFILE="`dirname "${CONFFILE}"`/config"
else
- echo "Config file for uboot environment is missing!"
+ echo "Config file for uboot environment is missing!" >&2
exit 1
fi
fi