From cee49173601d371d79651227dba1b8989a9dda8b Mon Sep 17 00:00:00 2001 From: Stacy Harper Date: Wed, 17 Mar 2021 22:26:54 +0100 Subject: [PATCH] Do not truncate stderr file output Another script would use sxmo_modemsendsms and maybe put its error somewhere. We should not truncate stderr as it would break those scripts. Signed-off-by: Stacy Harper Signed-off-by: Maarten van Gompel --- scripts/modem/sxmo_modemsendsms.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/modem/sxmo_modemsendsms.sh b/scripts/modem/sxmo_modemsendsms.sh index 90d3285..fce63ac 100755 --- a/scripts/modem/sxmo_modemsendsms.sh +++ b/scripts/modem/sxmo_modemsendsms.sh @@ -5,7 +5,7 @@ . "$(dirname "$0")/sxmo_common.sh" info() { - echo "$1" > /dev/stderr + echo "$1" >> /dev/stderr } err() {