您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

.check-gofmt.sh 207B

12345678910
  1. #!/bin/bash
  2. # exclude vendor/
  3. SOURCES="./oragono.go ./irc"
  4. if [ -n "$(gofmt -s -l $SOURCES)" ]; then
  5. echo "Go code is not formatted correctly with \`gofmt -s\`:"
  6. gofmt -s -d $SOURCES
  7. exit 1
  8. fi