CI: check for CHANGEME in all dirs (!628)
With pmbootstrap!1811, generated aports in temp/ can also have a "(CHANGEME!)" string. Let's check in all dirs, not just in the device dir.
This commit is contained in:
parent
811dc68960
commit
bc399297dc
1 changed files with 2 additions and 2 deletions
|
@ -7,9 +7,9 @@ DIR="$(cd "$(dirname "$0")" && pwd -P)"
|
|||
cd "$DIR/.."
|
||||
|
||||
# Find CHANGEMEs in APKBUILDs
|
||||
if grep -qr '(CHANGEME!)' device; then
|
||||
if grep -qr '(CHANGEME!)' *; then
|
||||
echo "ERROR: Please replace '(CHANGEME!)' in the following files:"
|
||||
grep --color=always -r '(CHANGEME!)' device
|
||||
grep --color=always -r '(CHANGEME!)' *
|
||||
exit 1
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue