From 72b8f94b88c9b9bd898d3e92f395ab34cff65aac Mon Sep 17 00:00:00 2001 From: Jeremy Rand Date: Mon, 21 Mar 2022 12:39:38 +0000 Subject: [PATCH] Bump script: Fix missing jq dependency --- tools/cirrus_build_project.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/cirrus_build_project.sh b/tools/cirrus_build_project.sh index 9af02a6..f49cb4e 100755 --- a/tools/cirrus_build_project.sh +++ b/tools/cirrus_build_project.sh @@ -21,7 +21,8 @@ mv .cirrus.yml .cirrus.yml.bak diff .cirrus.yml .cirrus.yml.bak echo "Installing rbm deps..." -APT_DEPS="libyaml-libyaml-perl libtemplate-perl libdatetime-perl libio-handle-util-perl libio-all-perl libio-captureoutput-perl libjson-perl libpath-tiny-perl libstring-shellquote-perl libsort-versions-perl libdigest-sha-perl libdata-uuid-perl libdata-dump-perl libfile-copy-recursive-perl libfile-slurp-perl git uidmap rsync" +# jq is used by bump script, everything else is used by rbm +APT_DEPS="libyaml-libyaml-perl libtemplate-perl libdatetime-perl libio-handle-util-perl libio-all-perl libio-captureoutput-perl libjson-perl libpath-tiny-perl libstring-shellquote-perl libsort-versions-perl libdigest-sha-perl libdata-uuid-perl libdata-dump-perl libfile-copy-recursive-perl libfile-slurp-perl git uidmap rsync jq" apt-get install -y $APT_DEPS || (sleep 15s && apt-get install -y $APT_DEPS) echo "Pulling rbm..."