Fix exit code in CI entrypoint to address shellckeck issue

- Fixes #301

Signed-off-by: Hideki Saito <saito@fgrep.org>
This commit is contained in:
Hideki Saito 2021-12-20 08:40:36 +09:00
parent a8fcc028c0
commit cd04f5a092
2 changed files with 4 additions and 1 deletions

View file

@ -0,0 +1,3 @@
---
trivial:
- CI tests - fix exit code to address shellckeck test issue (https://github.com/ansible-collections/ansible.posix/issues/301).

View file

@ -50,7 +50,7 @@ function retry
echo "@* -> ${result}" echo "@* -> ${result}"
done done
echo "Command '@*' failed 3 times!" echo "Command '@*' failed 3 times!"
exit -1 exit 255
} }
command -v pip command -v pip