fix: re-introduce util.sh inclusion
This was removed from run_package.sh but not added in the refactored
file. Add it to fix local CI runs.
Signed-off-by: Harrison Mutai <harrison.mutai@arm.com>
Change-Id: If1954f2637c3a01ec6fccee3186b0a461ca14a0f
diff --git a/script/run_common.sh b/script/run_common.sh
index c87ecce..79ca7a1 100644
--- a/script/run_common.sh
+++ b/script/run_common.sh
@@ -5,6 +5,8 @@
# SPDX-License-Identifier: BSD-3-Clause
#
+source "$ci_root/utils.sh"
+
# Launch a program. Have its PID saved in a file with given name with .pid
# suffix. When the program exits, create a file with .success suffix, or one
# with .fail if it fails. This function blocks, so the caller must '&' this if