From 73b9a681a6ce5d6f71175305992ca812c21bc2a2 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Thu, 27 Jun 2024 08:42:09 -0700 Subject: [PATCH] terraform: util.go is now semaphore.go The previous commit removed everything except the Semaphore utility from this file, so we'll now give the file a more relevant name so that it's easier to find the Semaphore utility and also so it's less tempting to use this file as just a heap of miscellaneous stuff. --- internal/terraform/{util.go => semaphore.go} | 0 internal/terraform/{util_test.go => semaphore_test.go} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename internal/terraform/{util.go => semaphore.go} (100%) rename internal/terraform/{util_test.go => semaphore_test.go} (100%) diff --git a/internal/terraform/util.go b/internal/terraform/semaphore.go similarity index 100% rename from internal/terraform/util.go rename to internal/terraform/semaphore.go diff --git a/internal/terraform/util_test.go b/internal/terraform/semaphore_test.go similarity index 100% rename from internal/terraform/util_test.go rename to internal/terraform/semaphore_test.go