From 7122e8f22e4f0d64c26da22730dbc43548d7df21 Mon Sep 17 00:00:00 2001 From: jkito Date: Tue, 1 Nov 2022 00:33:54 +0530 Subject: [pkg] symlinking the vendor dir doesn't work on cygwin this changes the symlinking to instead copy the vendor files same as done for when detecting platform is mingw --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ef9a0f7..2f4a381 100644 --- a/Makefile +++ b/Makefile @@ -133,7 +133,7 @@ ifeq ($(VENDOR_PATH), providers) endif endif # end mingw ifeq ($(UNAME), CYGWIN_NT-10.0) - @[ -L providers/assets ] || (CYGWIN=winsymlinks:nativestrict ln -s ${PROVIDER}/assets providers/assets) + @[ -L providers/assets ] || cp -r providers/${PROVIDER}/assets providers/assets endif # end cygwin else # not windows: linux/osx ifeq ($(VENDOR_PATH), providers) -- cgit v1.2.3