• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3if [ -n "$(gofmt -l .)" ]; then
4    echo "Go code is not formatted:"
5    gofmt -d .
6    exit 1
7fi
8