precommit.sh 317 字节
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
Y
Yu Yang 已提交
15
pre-commit run -a
Y
Yu Yang 已提交
16 17

trap : 0