precommit.sh 357 字节
Newer Older
Y
Yu Yang 已提交
1
#!/bin/bash
Y
Yu Yang 已提交
2 3 4 5 6 7 8
function abort(){
    echo "Your commit not fit PaddlePaddle code style" 1>&2
    echo "Please use pre-commit scripts to auto-format your code" 1>&2
    exit 1
}

trap 'abort' 0
Y
Yu Yang 已提交
9 10 11
set -e
source common.sh
cd ..
Y
Yu Yang 已提交
12
export PATH=/usr/bin:$PATH
Y
Yu Yang 已提交
13
pre-commit install
Y
Yu Yang 已提交
14
clang-format --version
15 16 17 18

if ! pre-commit run -a ; then
  git diff  --exit-code
fi
Y
Yu Yang 已提交
19 20

trap : 0