~corey.bryant/charms/trusty/ceilometer/charm-proof

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Corey Bryant
  • Date: 2015-02-05 13:52:24 UTC
  • Revision ID: corey.bryant@canonical.com-20150205135224-z0o3vpva2h8p8ukc
Anchor the make lint regex per Liam's review.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
lint:
5
5
        @flake8 --exclude hooks/charmhelpers hooks unit_tests
6
6
        @charm proof
7
 
ifneq ($(shell charm proof | grep -E 'E:|W:'), )
 
7
ifneq ($(shell charm proof | grep -E '^(E:|W:)'), )
8
8
        @exit 1
9
9
endif
10
10