Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 0550571

Browse files
Merge pull request #205 from StefanScherer/fix-windows-e2e-backslash-problem
Replace backslashes with slashes to fix e2e run
2 parents 5a67dc4 + d020356 commit 0550571

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

builder.Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ PWD:=$(shell pwd)
2525
ifeq ($(GOOS),windows)
2626
SNYK_DOWNLOAD_NAME:=snyk-win.exe
2727
SNYK_BINARY=snyk.exe
28-
PWD=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
28+
PWD=$(subst \,/,$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))))
2929
endif
3030
ifeq ($(GOOS),darwin)
3131
SNYK_DOWNLOAD_NAME:=snyk-macos

0 commit comments

Comments
 (0)