From 70d0dca7059dc16aab858db51315cf559b706231 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Mon, 18 Apr 2016 17:36:50 -0700 Subject: [PATCH] Another attempt at copying with timestamp update on Windows. The weird plus syntax copied files to the current directory. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 17d4afa2c..68f453977 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,8 @@ ifdef ComSpec BIN := $(subst /,\,node_modules/.bin/) RMDIR := -rmdir /s /q RM := -del - CP = copy /b /y $(subst /,\,$<)+ $(subst /,\,$@) - CP2 = copy /b /y $(subst /,\,$1)+ $(subst /,\,$2) + CP = type $(subst /,\,$<) > $(subst /,\,$@) + CP2 = type $(subst /,\,$1) > $(subst /,\,$2) MKDIR = -mkdir $(subst /,\,$@) ESC_DOLLAR = $$ else