eb1bfc2c2e
Change-Id: Icb47ba8b13b13889e28bb285321f11344400edc2 Closes-Bug:#1582618
12 lines
309 B
Bash
Executable File
12 lines
309 B
Bash
Executable File
#!/bin/bash
|
|
|
|
REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')")
|
|
cd "$(dirname "$REAL_PATH")/.."
|
|
|
|
find docker -name Dockerfile.j2 -print0 |
|
|
xargs -0 tools/validate-maintainer.sh || exit 1
|
|
|
|
find docker -name Dockerfile.j2 -print0 |
|
|
xargs -0 tools/validate-install-command.sh || exit 1
|
|
|