![Goutham Pacha Ravi](/assets/img/avatar_default.png)
Prevents this bashate warning: ./elements/manila-ssh/install.d/fetch-public-ssh-keys.service:1:1: E005 File does not begin with #! or have .sh prefix TrivialFix Change-Id: I9e4e6b96730ddc62ac1094ec4af0c84863acc60f Signed-off-by: Goutham Pacha Ravi <gouthampravi@gmail.com>
9 lines
298 B
Bash
Executable File
9 lines
298 B
Bash
Executable File
#!/bin/bash -xe
|
|
|
|
find ./ -not -wholename \*.tox/\* -and \
|
|
\( -name \*.sh -or -wholename \*.d/\* -and \
|
|
-not -name \*.md -and -not -name \*.rst -and \
|
|
-not -name \*.py -and -not -name \*.conf \) \
|
|
-not -name \*.service -not -name \*.yaml \
|
|
-print0 | xargs -0 bashate -v -i E006
|