From d02035669bdc358ce70b76a6b53b2212d135bd85 Mon Sep 17 00:00:00 2001 From: Stefan Scherer Date: Wed, 3 Aug 2022 12:09:17 +0200 Subject: [PATCH] Replace backslashes with slashes to fix e2e run Signed-off-by: Stefan Scherer --- builder.Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder.Makefile b/builder.Makefile index 0337a361..d7237987 100644 --- a/builder.Makefile +++ b/builder.Makefile @@ -25,7 +25,7 @@ PWD:=$(shell pwd) ifeq ($(GOOS),windows) SNYK_DOWNLOAD_NAME:=snyk-win.exe SNYK_BINARY=snyk.exe - PWD=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) + PWD=$(subst \,/,$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))) endif ifeq ($(GOOS),darwin) SNYK_DOWNLOAD_NAME:=snyk-macos