mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
18 lines
296 B
Bash
Executable File
18 lines
296 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e # Fail fast
|
|
|
|
# PEP8 is not ignored in ACME
|
|
pep8 --config=acme/.pep8 acme
|
|
|
|
pep8 \
|
|
setup.py \
|
|
certbot \
|
|
certbot-apache \
|
|
certbot-nginx \
|
|
certbot-compatibility-test \
|
|
letshelp-certbot \
|
|
|| echo "PEP8 checking failed, but it's ignored in Travis"
|
|
|
|
# echo exits with 0
|