summaryrefslogtreecommitdiff
path: root/scripts/gofmtcheck.sh
blob: c09fa2085d3640c2ff39e6f5684efbeb45da6fcd (plain)
1
2
3
4
5
#!/usr/bin/env bash
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

if [[ -n $(gofmt -l ./) ]]; then echo "Please run gofmt -w ./ to format code"; exit 1; fi;