From cc9923f28ab3fc19f59f8882d90a53803a3d5d0e Mon Sep 17 00:00:00 2001 From: ccd0 Date: Sat, 9 Jul 2016 17:32:14 -0700 Subject: [PATCH] Suppress printing of filenames when concatenating files on Windows. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b45d66555..78a2e7a67 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ ifdef ComSpec BIN := $(subst /,\,node_modules/.bin/) RMDIR := -rmdir /s /q RM := -del - CAT = type $(subst /,\,$1) > $(subst /,\,$2) + CAT = type $(subst /,\,$1) > $(subst /,\,$2) 2>NUL MKDIR = -mkdir $(subst /,\,$@) QUOTE = $(patsubst %,"%",$1) else