BUILD: Removes always true from pip install
Removes the `|| true` option which would allow the pip install command
to pass regardless of reported condition.
Change-Id: I1d2780abe1645ee4237dbc8ffc98d5c97b5eac79
Signed-off-by: Matthew Dalzell <matthew.dalzell@arm.com>
diff --git a/clone.sh b/clone.sh
index 52aea20..2ee3308 100755
--- a/clone.sh
+++ b/clone.sh
@@ -101,7 +101,6 @@
fi
TFM_REFSPEC="${GERRIT_REFSPEC:?}"
TFM_NAME="trusted-firmware-m"
-pip install --no-deps ./trusted-firmware-m/pyproject.toml || true
clone_repo_to_share_folder "${TFM_PROJECT}" "${TFM_NAME}" "${TFM_REFSPEC}"
if [ ! -d "${SHARE_FOLDER}/${TFM_NAME}" ]; then
@@ -109,6 +108,8 @@
exit 1
fi
+pip install --no-deps ../trusted-firmware-m/
+
# Dependency projects
TFM_TESTS_PROJECT="${TFM_TESTS_URL:-}"
TFM_TESTS_REFSPEC="${TFM_TESTS_REFSPEC:-"$(parse_version lib/ext/tf-m-tests/version.txt version= = 2)"}"