Suppress printing of filenames when concatenating files on Windows.

This commit is contained in:
ccd0 2016-07-09 17:32:14 -07:00
parent 4549e8c5f7
commit cc9923f28a

View File

@ -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