mirror of
https://github.com/certbot/certbot.git
synced 2026-04-28 09:39:53 -04:00
Don't run pep8 for directories that we don't actually enforce pep8 on. Install dependencies with -q. Don't print reports, they make it hard to find the actual errors. Remove deprecated fields from acme .pylintrc, they cause unnecessary messages about deprecation.
5 lines
62 B
Bash
Executable file
5 lines
62 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e # Fail fast
|
|
|
|
pep8 --config=acme/.pep8 acme
|