6666d1e973
Change-Id: I6ee985e694142aa7dadeb085b77910667ac6359f
10 lines
154 B
Bash
Executable File
10 lines
154 B
Bash
Executable File
#!/bin/sh
|
|
|
|
TOPLEVEL=$(git rev-parse --show-toplevel)
|
|
|
|
cd $TOPLEVEL
|
|
|
|
git ls-files -z '*/Dockerfile' |
|
|
xargs -0 tools/validate-maintainer.sh || exit 1
|
|
|