forked from github/pre-commit-opentofu
5 lines
79 B
Bash
Executable file
5 lines
79 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
for file in "$@"; do
|
|
terraform fmt `dirname $file`
|
|
done
|