From bb89126f1a52683a6efbdcec77be8ef916e59a42 Mon Sep 17 00:00:00 2001 From: Erik Stambaugh Date: Fri, 9 Feb 2024 06:07:17 -0800 Subject: [PATCH] Squelch sed output in namecheap setup --- terraform/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/Makefile b/terraform/Makefile index 30fb0a4..20a6935 100644 --- a/terraform/Makefile +++ b/terraform/Makefile @@ -73,7 +73,7 @@ pubkey: terraform-options: config.tf tf-namecheap tf-namecheap: - if test "$(DNS_NAMECHEAP)" -eq 1; then \ + @if test "$(DNS_NAMECHEAP)" -eq 1; then \ for FILE in namecheap/*; do \ sed $(SEDLINE) $${FILE} > $$(basename "$${FILE}"); \ done; \