Skip to content

Commit 1386f70

Browse files
authored
Fix issue with runs being incorrectly flagged as failed (#58)
Newline characters were causing this check to erroneously fail.
1 parent 35a9108 commit 1386f70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ansible/deploy-openstack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@
8383
To see results:
8484
8585
{{ connection_info }}
86-
when: rc_slurp.content | b64decode != "0"
86+
when: rc_slurp.content | b64decode | trim != "0"

0 commit comments

Comments
 (0)