mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-11-29 18:27:58 +08:00
10 lines
280 B
Bash
Executable File
10 lines
280 B
Bash
Executable File
#!/bin/sh
|
|
TARGET_BRANCH=${TARGET_BRANCH:-'master'}
|
|
|
|
CHANGED_MARKDOWN_FILES=$(git diff --name-only ${TARGET_BRANCH} | grep .go)
|
|
for file in ${CHANGED_MARKDOWN_FILES}; do
|
|
echo "golint ${file}"
|
|
golint -set_exit_status=true ${file} || exit 1
|
|
done
|
|
|
|
echo "code golint check success" |