Home | History | Annotate | Download | only in apilint
      1 #!/bin/bash
      2 if git show --name-only --pretty=format: $1 | grep api/ > /dev/null; then
      3     python tools/apilint/apilint.py <(git show $1:api/current.txt) <(git show $1^:api/current.txt)
      4 fi
      5