25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

13 satır
310 B

  1. #!/bin/bash
  2. # This script is used by the CI to check if the code is gofmt formatted.
  3. set -euo pipefail
  4. GOFMT_DIFF=$(IFS=$'\n'; gofmt -d $( find . -type f -name '*.go' ) )
  5. if [[ -n "${GOFMT_DIFF}" ]]; then
  6. echo "${GOFMT_DIFF}"
  7. echo
  8. echo "The go source files aren't gofmt formatted."
  9. exit 1
  10. fi