Skip to content
Snippets Groups Projects
validate-all-maintainer.sh 208 B
Newer Older
  • Learn to ignore specific revisions
  • #!/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