Started implementing manifest validating

This commit is contained in:
Anthony Sottile
2014-03-13 12:36:25 -07:00
parent e06392134b
commit 3945f84e3f
11 changed files with 237 additions and 0 deletions

8
scripts/validate-manifest.py Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env python
if __name__ == '__main__':
import sys
from pre_commit.clientlib.validate_manifest import run
sys.exit(run(sys.argv[1:]))