From: Patrick Talbert ptalbert@redhat.com
[redhat] scripts: check for `gitlab` command in ark-create-release.sh
We should not run this script without it.
Signed-off-by: Patrick Talbert ptalbert@redhat.com
diff --git a/redhat/scripts/ci/ark-create-release.sh b/redhat/scripts/ci/ark-create-release.sh index blahblah..blahblah 100755 --- a/redhat/scripts/ci/ark-create-release.sh +++ b/redhat/scripts/ci/ark-create-release.sh @@ -7,6 +7,14 @@
set -e
+# This script requires the `gitlab` command to locate `Include in Releases` content. +if ! command -v gitlab 2>&1 > /dev/null; then + echo "Required command 'gitlab' (from python-gitlab package) not present." + exit 1 +fi + +exit 0 + # source common CI functions and variables # shellcheck disable=SC1091 . "$(dirname "$0")"/ark-ci-env.sh
-- https://gitlab.com/cki-project/kernel-ark/-/merge_requests/3439
kernel@lists.fedoraproject.org