We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
jq
build.sh
1 parent b43e71c commit 518bf28Copy full SHA for 518bf28
build.sh
@@ -19,6 +19,9 @@ export LC_ALL=C.UTF-8
19
[ -v CI_TOOLS_PATH ] && [ -d "$CI_TOOLS_PATH" ] \
20
|| { echo "Invalid build environment: Environment variable 'CI_TOOLS_PATH' not set or invalid" >&2; exit 1; }
21
22
+[ -x "$(which jq 2>/dev/null)" ] \
23
+ || { echo "Missing build script dependency: jq" >&2; exit 1; }
24
+
25
source "$CI_TOOLS_PATH/helper/common.sh.inc"
26
source "$CI_TOOLS_PATH/helper/common-traps.sh.inc"
27
source "$CI_TOOLS_PATH/helper/container.sh.inc"
0 commit comments