You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by an...@apache.org on 2022/09/19 09:42:57 UTC

[mynewt-nimble] 02/02: babblesim: Print script errors to stderr

This is an automated email from the ASF dual-hosted git repository.

andk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git

commit 35583ac325d03136fce0801ef342d3a509502013
Author: Andrzej Kaczmarek <an...@codecoup.pl>
AuthorDate: Sat Sep 17 23:19:30 2022 +0200

    babblesim: Print script errors to stderr
---
 babblesim/sdk/scripts/link_babblesim.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/babblesim/sdk/scripts/link_babblesim.sh b/babblesim/sdk/scripts/link_babblesim.sh
index 9254a18a..1c069eb3 100755
--- a/babblesim/sdk/scripts/link_babblesim.sh
+++ b/babblesim/sdk/scripts/link_babblesim.sh
@@ -22,7 +22,7 @@ if [ -z ${BSIM_COMPONENTS_PATH+x} ]; then
   echo "This board requires the BabbleSim simulator. Please set" \
         "the environment variable BSIM_COMPONENTS_PATH to point to its components" \
         "folder. More information can be found in" \
-        "https://babblesim.github.io/folder_structure_and_env.html"
+        "https://babblesim.github.io/folder_structure_and_env.html" 1>&2
   exit 1
 fi
 
@@ -30,7 +30,7 @@ if [ -z ${BSIM_OUT_PATH+x} ]; then
   echo "This board requires the BabbleSim simulator. Please set" \
         "the environment variable BSIM_OUT_PATH to point to the folder where the" \
         "simulator is compiled to. More information can be found in" \
-        "https://babblesim.github.io/folder_structure_and_env.html"
+        "https://babblesim.github.io/folder_structure_and_env.html" 1>&2
   exit 1
 fi