We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2f6154 commit 41dcf36Copy full SHA for 41dcf36
etc/kayobe/ansible/check-kayobe-version.yml
@@ -7,7 +7,8 @@
7
tasks:
8
- name: Get installed kayobe commit
9
ansible.builtin.shell:
10
- cmd: pip freeze | grep kayobe | cut -d @ -f 3 -s
+ cmd: set -o pipefail && pip freeze | grep kayobe | cut -d @ -f 3 -s
11
+ executable: /usr/bin/bash
12
register: kayobe_git_commit
13
14
- name: Clone kayobe
@@ -24,7 +25,8 @@
24
25
26
- name: Get latest Kayobe version
27
- cmd: grep -o kayobe@stackhpc\/.*$ {{ requirements_path }} | cut -d @ -f 2
28
+ cmd: set -o pipefail && grep -o kayobe@stackhpc\/.*$ {{ requirements_path }} | cut -d @ -f 2
29
30
register: kayobe_latest_version
31
32
- name: Check installed kayobe version is the latest
0 commit comments