fix ci yapf command if no python files found
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2021-06-08 00:26:20 +02:00
parent 6ee73accc1
commit 6f01f5417f
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ local PipelineLinting = {
},
commands: [
'pip install -qq yapf',
'[ ! -z "$(find . -type f -name *.py)" ] && yapf -rd ./',
'[ -z "$(find . -type f -name *.py)" ] || (yapf -rd ./)',
],
},
{

View File

@ -16,7 +16,7 @@ steps:
image: python:3.9
commands:
- pip install -qq yapf
- "[ ! -z \"$(find . -type f -name *.py)\" ] && yapf -rd ./"
- "[ -z \"$(find . -type f -name *.py)\" ] || (yapf -rd ./)"
environment:
PY_COLORS: 1
@ -147,6 +147,6 @@ depends_on:
---
kind: signature
hmac: b4039ed504d559bb2c8e3a3c61a897d5a42509908177db9ed7300406b4b33b25
hmac: 80f7c064f9a2c458a96fa8e46033a3f48c0b5c78a5836273a55aa1b3a6fa3749
...