From 79e7f09d853c865a5c388ed6b364eb92a6c94c03 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 8 Jun 2021 00:14:22 +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 fc1fe75..c3035e5 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 19da0c6..f363951 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 @@ -180,6 +180,6 @@ depends_on: --- kind: signature -hmac: 43cb7291e54b484ae79b1ce4552d7ff1f9195dec6a9758b4f14444b2c223d1b1 +hmac: 9703a5476a951dfc39626d1a8426285e5ce17c8be4876815c24034e63aa11b61 ...