From a7d775377cd818f43ad5151dbc6ac5de57fbccd4 Mon Sep 17 00:00:00 2001 From: "Raymond Tunstill (Kirk)" Date: Wed, 11 Jan 2023 11:27:49 +0000 Subject: [PATCH] Fix 'bash: line 231: cho: command not found' On bash based shells the install_depthai.sh script fails to execute due to superfluous dollar signs in the echo statements. --- docs/source/_static/install_depthai.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/_static/install_depthai.sh b/docs/source/_static/install_depthai.sh index a1fae2203..2fe62a090 100755 --- a/docs/source/_static/install_depthai.sh +++ b/docs/source/_static/install_depthai.sh @@ -227,8 +227,8 @@ else exit 99 fi -echo $'\n\n:::::::::::::::: INSTALATION COMPLETE ::::::::::::::::\n' -echo $'\nTo run demo app write in terminal.' +echo '\n\n:::::::::::::::: INSTALATION COMPLETE ::::::::::::::::\n' +echo '\nTo run demo app write in terminal.' read -rsp $'Press ANY KEY to finish and run the demo app...\n' -n1 key echo "STARTING DEMO APP." python "$DEPTHAI_DIR/launcher/launcher.py" -r "$DEPTHAI_DIR"