From bbed865cebb5a0d00ba787a502135d2045ba3a7d Mon Sep 17 00:00:00 2001 From: liamfallon Date: Tue, 14 Mar 2023 17:15:14 +0000 Subject: Update PF for SNI checking support Fix the script to allow CSITs to run on MacOS Issue-ID: POLICY-4474 Change-Id: If11ad6ba4f4b4bc52543d46d12ce5b40d3cc26be Signed-off-by: liamfallon --- csit/resources/scripts/prepare-robot-env.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/csit/resources/scripts/prepare-robot-env.sh b/csit/resources/scripts/prepare-robot-env.sh index fe8dbd94..061da844 100755 --- a/csit/resources/scripts/prepare-robot-env.sh +++ b/csit/resources/scripts/prepare-robot-env.sh @@ -51,4 +51,7 @@ python3 -m pip install -U -qq docker python3 -m pip -qq freeze -sudo apt-get -y -qq install libxml2-utils +if (uname | grep -q 'Linux') +then + sudo apt-get -y -qq install libxml2-utils +fi -- cgit 1.2.3-korg