mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 01:41:48 -06:00
e39e0e3d04
Remove chef, habitat, puppet, and salt-masterless provsioners, which follows their deprecation. Update the documentatin for these provisioners to clarify that they have been removed from later versions of Terraform. Adds the fmt Make target back and updates fmtcheck script for correctness.
14 lines
369 B
Bash
Executable File
14 lines
369 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Check gofmt
|
|
echo "==> Checking that code complies with gofmt requirements..."
|
|
gofmt_files=$(gofmt -l `find . -name '*.go' | grep -v vendor`)
|
|
if [[ -n ${gofmt_files} ]]; then
|
|
echo 'gofmt needs running on the following files:'
|
|
echo "${gofmt_files}"
|
|
echo "You can use the command: \`gofmt -w .\` to reformat code."
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|