From 19641859ca994fd95408f801c481e056f45addb2 Mon Sep 17 00:00:00 2001 From: Erik Stambaugh Date: Sun, 28 Jan 2024 18:15:30 -0800 Subject: [PATCH] Squelch sed output to terminal --- ansible/Makefile | 2 +- terraform/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ansible/Makefile b/ansible/Makefile index c29e682..eccb62d 100644 --- a/ansible/Makefile +++ b/ansible/Makefile @@ -23,7 +23,7 @@ reboot: inventory.yaml aws --region $(AWS_REGION) ec2 reboot-instances --instance-ids $(INSTANCE_ID) inventory.yaml: inventory.tmpl.yaml sedline - sed $(SEDLINE) inventory.tmpl.yaml > inventory.yaml + @sed $(SEDLINE) inventory.tmpl.yaml > inventory.yaml SEDLINE = diff --git a/terraform/Makefile b/terraform/Makefile index b4ca062..30fb0a4 100644 --- a/terraform/Makefile +++ b/terraform/Makefile @@ -23,7 +23,7 @@ terraform-check: .toolcheck pubkey SEDLINE = config.tf: sedline config.tf.in ../config.mk - sed $(SEDLINE) config.tf.in > config.tf + @sed $(SEDLINE) config.tf.in > config.tf #configvars: ../config.mk # $(eval CONFIGVARS := $(shell grep '^[0-9A-Z]' ../config.mk | awk '{print $1}'))