From: anhnghcl Date: Sun, 19 Jun 2022 17:54:27 +0000 (+0000) Subject: Fix script error X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;ds=inline;h=59e74e1f3e1bddd21c22445c2dd5e4f3f9539a5e;p=ci-management.git Fix script error Signed-off-by: anhnghcl Change-Id: I87f86a623b054bbea8f47d089fb2f2ea1277a730 --- diff --git a/jjb/shell/install-deb-cpprest.sh b/jjb/shell/install-deb-cpprest.sh index 7339b191..2fcf6981 100644 --- a/jjb/shell/install-deb-cpprest.sh +++ b/jjb/shell/install-deb-cpprest.sh @@ -22,6 +22,6 @@ echo "---> install-deb-cpprest.sh" # stop on error or unbound var, and be chatty set -eux -sudo apt-get update --fix-misisng && sudo apt-get -q -y install libcpprest-dev +sudo apt-get update --fix-missing && sudo apt-get -y install libcpprest-dev echo "---> install-deb-cpprest.sh ends" diff --git a/jjb/shell/install-git-pistache.sh b/jjb/shell/install-git-pistache.sh index 6e95fbb9..c8db9a85 100644 --- a/jjb/shell/install-git-pistache.sh +++ b/jjb/shell/install-git-pistache.sh @@ -31,8 +31,8 @@ else sudo apt-get install python3 fi -sudo apt-get update && sudo apt-get install rapidjson-dev libssl-dev -python3.8 -m pip install meson +sudo apt-get update && sudo apt-get -y install rapidjson-dev libssl-dev +python3 -m pip install meson echo "---> install Pistache library.."