Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

.check-gofmt.sh 263B

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