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 '{}' \;