You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.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