Browse code

fix bashate target

there was a missing -or which meant we weren't running this on most of
the files in the repository.

Change-Id: If926afc8f12f6beb80d7a9af7c787b3dcc360a89

Sean Dague authored on 2015/04/03 21:52:29
Showing 1 changed files
... ...
@@ -20,7 +20,7 @@ commands = bash -c "find {toxinidir}          \
20 20
           -name \*.sh -or                     \
21 21
           -name \*rc -or                      \
22 22
           -name functions\* -or               \
23
-          -wholename \*/inc/\*                \ # /inc files and
23
+          -wholename \*/inc/\* -or            \ # /inc files and
24 24
           -wholename \*/lib/\*                \ # /lib files are shell, but
25 25
          \)                                   \ #   have no extension
26 26
          -print0 | xargs -0 bashate -v"