From 6a3cc7fb1d4b6e14d0eff1566776fd1c087fd820 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 8 Jun 2021 00:14:37 +0200 Subject: [PATCH] fix ci yapf command if no python files found --- .drone.jsonnet | 2 +- .drone.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 6ebddcd..4168eb0 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -21,7 +21,7 @@ local PipelineLinting = { }, commands: [ 'pip install -qq yapf', - 'yapf -dr ./', + '[ ! -z "$(find . -type f -name *.py)" ] && yapf -rd ./', ], }, { diff --git a/.drone.yml b/.drone.yml index 02bd676..4464efb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -16,7 +16,7 @@ steps: image: python:3.9 commands: - pip install -qq yapf - - yapf -dr ./ + - "[ ! -z \"$(find . -type f -name *.py)\" ] && yapf -rd ./" environment: PY_COLORS: 1 @@ -115,6 +115,6 @@ depends_on: --- kind: signature -hmac: 87611f37ee6e46a121da27f677cdf1a195a91841f7ae699a823be6601d400fef +hmac: 9698ce2361517f2b9047276521280a759561e863d3f2fb469b6a19e4b5281ffa ...