summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2017-04-12 12:07:04 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2017-04-12 12:12:00 +0200
commita30bb46f691f60626f3fc633cb37bd76b1ca7dd7 (patch)
treeb594d0ca0d05473d048720a4a6087c890c165025 /scripts
parent3be135f0bd48ec0b46adc0f2bd4b073c55dfe71f (diff)
downloadptxdist-a30bb46f691f60626f3fc633cb37bd76b1ca7dd7.tar.gz
ptxdist-a30bb46f691f60626f3fc633cb37bd76b1ca7dd7.tar.xz
ptxd_verbose: verbose log to stdout
stderr goes to the shell when quite is enable and that is not wanted here. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/libptxdist.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/libptxdist.sh b/scripts/libptxdist.sh
index aaadee6cb..6f66be65c 100644
--- a/scripts/libptxdist.sh
+++ b/scripts/libptxdist.sh
@@ -774,7 +774,7 @@ export -f ptxd_warning
#
ptxd_verbose() {
if [ "${PTXDIST_VERBOSE}" == "1" ]; then
- echo "${PTXDIST_LOG_PROMPT}""${@}" >&2
+ echo "${PTXDIST_LOG_PROMPT}""${@}"
elif [ -n "${PTXDIST_FD_LOGFILE}" ]; then
echo "${PTXDIST_LOG_PROMPT}""${@}" >&9
fi