From: Patrick Talbert <[email protected]>

[redhat] scripts: check for `gitlab` command in ark-create-release.sh

We should not run this script without it.

Signed-off-by: Patrick Talbert <[email protected]>

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 mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/[email protected]
Do not reply to spam, report it: 
https://pagure.io/fedora-infrastructure/new_issue

Reply via email to