From 59e74e1f3e1bddd21c22445c2dd5e4f3f9539a5e Mon Sep 17 00:00:00 2001 From: anhnghcl Date: Sun, 19 Jun 2022 17:54:27 +0000 Subject: [PATCH] Fix script error Signed-off-by: anhnghcl Change-Id: I87f86a623b054bbea8f47d089fb2f2ea1277a730 --- jjb/shell/install-deb-cpprest.sh | 2 +- jjb/shell/install-git-pistache.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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.." -- 2.16.6