kolla/tools/validate-maintainer.sh

14 lines
247 B
Bash
Executable File

#!/bin/bash
MAINTAINER='LABEL maintainer="{{ maintainer }}"'
RES=0
for dockerfile in "$@"; do
if ! grep -q "$MAINTAINER" "$dockerfile"; then
echo "ERROR: $dockerfile has incorrect MAINTAINER" >&2
RES=1
fi
done
exit $RES