From 3cdac6a38b550462cdae4103a7be411d1289ca08 Mon Sep 17 00:00:00 2001 From: Shannon Byrnes Date: Sun, 2 Feb 2025 12:08:40 -0500 Subject: [PATCH] Add missing subshell invocation --- internal-lab-setup-assets/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal-lab-setup-assets/Makefile b/internal-lab-setup-assets/Makefile index 255306b..f42388f 100644 --- a/internal-lab-setup-assets/Makefile +++ b/internal-lab-setup-assets/Makefile @@ -58,7 +58,7 @@ poetry: fi test: poetry - XRD_LAB_IPS=containerlab inspect --all | grep "cisco" | rev | cut -d ' ' -f8 | rev | sort -V; \ + XRD_LAB_IPS=$$(containerlab inspect --all | grep "cisco" | rev | cut -d ' ' -f8 | rev | sort -V); \ echo "$${XRD_LAB_IPS}"; \ if [ -z "$${XRD_LAB_IPS}" ]; then echo "No labs found." && exit 0; fi; \ cd tester; \