Merge "Add validation script for min env vars documentation"

This commit is contained in:
Jenkins 2015-07-06 15:11:50 +00:00 committed by Gerrit Code Review
commit 5992cb86f2

17
tools/validate-min-env-vars.sh Executable file

@ -0,0 +1,17 @@
#!/bin/bash
REAL_PATH=$(python -c "import os,sys;print os.path.realpath('$0')")
cd "$(dirname "$REAL_PATH")/.."
MIN_ENV_VARS_DOC=./docs/minimal-environment-vars.md
mv ${MIN_ENV_VARS_DOC}{,.validate}
# Generate a new file and check the content is the same
./tools/min-env.sh
/usr/bin/diff ${MIN_ENV_VARS_DOC}{,.validate}
RET=$?
mv ${MIN_ENV_VARS_DOC}{.validate,}
exit $RET