From 368a2887f87db0183c607abaacb750c39930f605 Mon Sep 17 00:00:00 2001 From: Ashley Connor <86969811+ashconnor@users.noreply.github.com> Date: Mon, 16 Sep 2024 15:58:31 -0700 Subject: [PATCH] Fix Name in tf-migrate to be valid Ruby Class name (#289) The name used currently is an invalid Ruby class name This results in the following incorrect formula: https://github.com/hashicorp/homebrew-tap/commit/f3d8e2ec380327287a9efabedc51a131c11ac0a6#diff-bbce9fac5595a26442059aeafb8bab526fae892f84379d558e87c6822cadea54R4 --- util/formula_templater/config.hcl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/formula_templater/config.hcl b/util/formula_templater/config.hcl index c3a3619..6475cad 100644 --- a/util/formula_templater/config.hcl +++ b/util/formula_templater/config.hcl @@ -444,8 +444,8 @@ formula { formula { product = "tf-migrate" - name = "tf-migrate" - desc = "tf-migrate" + name = "TfMigrate" + desc = "Terraform Migrate" homepage = "https://www.terraform.io" architectures { darwin_amd64 = true