
- Excluding awk and python scripts. - The Bashate E012 rule ('heredoc did not end before EOF') could be simply ignored until the bashate bug will be fixed. Change-Id: Id72665aba83df753364940c82db08edcb11e1217 Signed-off-by: Gael Chamoulaud <gchamoul@redhat.com>
6 lines
211 B
Bash
Executable File
6 lines
211 B
Bash
Executable File
#!/bin/bash -
|
|
|
|
# We could ignore the E012 bashate rule until the bug will be fixed in it.
|
|
find scripts -type f -not -name '*.awk' -print0 | xargs -0 grep -HL '^#!/usr/bin/env python' | xargs bashate -v -i E012
|
|
|