Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion infrastructure/terraform/bin/terraform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,6 @@ readonly backend_config="terraform {
region = \"${region}\"
bucket = \"${bucket}\"
key = \"${backend_key}\"
dynamodb_table = \"${bucket}\"
use_lockfile = true
}
}";
Expand Down
4 changes: 2 additions & 2 deletions scripts/githooks/check-file-format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function main() {
;;
esac

if command -v editorconfig > /dev/null 2>&1 && ! is-arg-true "${FORCE_USE_DOCKER:-false}"; then
if command -v editorconfig-checker > /dev/null 2>&1 && ! is-arg-true "${FORCE_USE_DOCKER:-false}"; then
filter="$filter" dry_run_opt="${dry_run_opt:-}" run-editorconfig-natively
else
filter="$filter" dry_run_opt="${dry_run_opt:-}" run-editorconfig-in-docker
Expand All @@ -80,7 +80,7 @@ function main() {
function run-editorconfig-natively() {

# shellcheck disable=SC2046,SC2086
editorconfig \
editorconfig-checker \
--exclude '.git/' $dry_run_opt $($filter)
}

Expand Down
Loading