pre-commit-opentofu/terraform_fmt.sh

16 lines
292 B
Bash
Raw Normal View History

2016-09-27 20:01:11 +02:00
#!/usr/bin/env bash
2018-01-24 13:34:34 +01:00
set -e
2016-09-27 20:01:11 +02:00
2018-01-24 13:34:34 +01:00
declare -a paths
index=0
for file_with_path in "$@"; do
paths[index]=$(dirname "$file_with_path")
let "index+=1"
done
for path_uniq in $(echo "${paths[*]}" | tr ' ' '\n' | sort -u); do
pushd "$path_uniq" > /dev/null
terraform fmt
popd > /dev/null
2016-09-27 20:01:11 +02:00
done