From 26d01ff4f2d99d69e2b58f20bbb81a4c99d23a2f Mon Sep 17 00:00:00 2001 From: pauhull Date: Thu, 2 Nov 2023 15:17:48 +0100 Subject: [PATCH] ci: fix e2e tests for Windows --- GNUmakefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 852b9f51..83e57c59 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,6 +1,11 @@ NAME=hcloud BINARY=packer-plugin-${NAME} -PACKER_PLUGIN_PATH?=~/.config/packer/plugins + +ifdef PACKER_PLUGIN_PATH +PACKER_PLUGIN_PATH := $(PACKER_PLUGIN_PATH) +else +PACKER_PLUGIN_PATH := ~/.config/packer/plugins +endif COUNT?=1 TEST?=./...