2015-04-27 11:59:55 +08:00
|
|
|
#!/bin/bash
|
2014-10-22 11:12:50 -04:00
|
|
|
|
2015-01-15 10:09:30 +09:00
|
|
|
REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')")
|
|
|
|
cd "$(dirname "$REAL_PATH")/.."
|
2014-10-22 11:12:50 -04:00
|
|
|
|
2015-01-15 10:09:30 +09:00
|
|
|
find docker -name Dockerfile -print0 |
|
2014-10-22 11:12:50 -04:00
|
|
|
xargs -0 tools/validate-maintainer.sh || exit 1
|
|
|
|
|