From e1aceb51014037c32a25a12a1ca398bbed01a934 Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Tue, 1 Oct 2024 17:25:01 +0200 Subject: [PATCH] Fix env var --- tests/API-dhcp/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/API-dhcp/Jenkinsfile b/tests/API-dhcp/Jenkinsfile index 31a9558..f1b9cd6 100644 --- a/tests/API-dhcp/Jenkinsfile +++ b/tests/API-dhcp/Jenkinsfile @@ -40,7 +40,7 @@ pipeline { new_ip=$(vagrant ssh -c "hostname -I" | tr -d '\r') echo "$QINDEL_PASS" | sudo -S bash -c "echo '$new_ip api-test' >> /etc/hosts" echo "IP: $new_ip" - curl -X 'GET' 'http://$new_ip/ogdhcp/v1/subnets' -H 'accept: /' + curl -X 'GET' "http://$new_ip/ogdhcp/v1/subnets" -H 'accept: /' ''' } }