[Mediapipe] fix shell script
authorHyoung Joo Ahn <hello.ahn@samsung.com>
Wed, 6 May 2020 11:45:04 +0000 (20:45 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Thu, 7 May 2020 10:31:24 +0000 (19:31 +0900)
make the nnstreamer lib path rather than error

Signed-off-by: Hyoung Joo Ahn <hello.ahn@samsung.com>
tools/development/gen_mediapipe_libs.sh

index adb91c9..ae26a49 100755 (executable)
@@ -5,16 +5,16 @@ NM=$(which nm)
 
 # check the MEDIAPIPE_HOME
 if [[ -z "${MEDIAPIPE_HOME}" ]]; then
-  echo "Define MEDIAPIPE_HOME First!"
+  >&2 echo "Define MEDIAPIPE_HOME First!"
   exit 1
 fi
 
+# make directories for libs if it is not
 if [ -z "$1" ] || [ ! -d "$1" ]; then
-  echo "[$1] is not existed!"
-  exit 1
+  mkdir -p $1
 fi
 
-# `for the external objects
+# for the external objects
 for ext_obj in $(find ${MEDIAPIPE_HOME}/bazel-bin/external/ -name '*.o' ); do
   ext_obj_arr+=($ext_obj)
 done