mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-25 16:31:10 -06:00
17 lines
400 B
Bash
Executable File
17 lines
400 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
|
# Check go fmt
|
|
echo "==> Checking that code complies with go fmt requirements..."
|
|
gofmt_files=$(go fmt ./...)
|
|
if [[ -n ${gofmt_files} ]]; then
|
|
echo 'gofmt needs running on the following files:'
|
|
echo "${gofmt_files}"
|
|
echo "You can use the command: \`go fmt\` to reformat code."
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|