commit f9d3e53d551d0842d4b464fd9b56603b2ce31f2f
parent 1831b351039ff4d0c8fde93fbd9b1c7a43ec0f72
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 20 May 2025 15:54:45 +0200
Correction of an error message
It was printed on the standard output instead of the standard error.
Diffstat:
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/meso-menu.sh b/meso-menu.sh
@@ -536,9 +536,7 @@ elif hash markdown2 2> /dev/null; then
elif hash markdown_py 2> /dev/null; then
export markdown=markdown_py
else
- echo "Cannot find the markdown[2|_py] command"
+ >&2 echo "Cannot find the markdown[2|_py] command"
exit 1
fi
set -e
-
-