From 90bfc092fa6cd1bba68d7503cff8a8106f97a964 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Wed, 18 Dec 2019 17:56:42 +0100 Subject: [PATCH] wrong pippantas --- .drone.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 63590c4..848d0e6 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,7 +6,7 @@ steps: - name: shellcheck image: python:3 commands: - - apt update && apt upgrade -y && apt instal -y shellcheck + - apt update && apt upgrade -y && apt install -y shellcheck - pip3 install pylint bandit mccabe - for file in $(find . -type f -name \"*.sh\"); do shellcheck --format=gcc $file; done; - find . -name "*.py" -exec python3 -m py_compile '{}' \;