From af22a66e68e5aff11b83b2d844d864f95b50b914 Mon Sep 17 00:00:00 2001 From: LitoMore Date: Sun, 27 Jun 2021 22:04:14 +0800 Subject: [PATCH 1/2] build: correct `Windows` spelling in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1cfa4ea7137695..6a060d93827bc2 100644 --- a/Makefile +++ b/Makefile @@ -1093,7 +1093,7 @@ $(TARBALL): release-only doc-only find $(TARNAME)/deps/v8/test -type f ! -regex '.*/test/torque/.*' | xargs $(RM) find $(TARNAME)/deps/zlib/contrib/* -type d ! -regex '.*/contrib/optimizations$$' | xargs $(RM) -r find $(TARNAME)/ -name ".eslint*" -maxdepth 2 | xargs $(RM) - find $(TARNAME)/ -type l | xargs $(RM) # annoying on windows + find $(TARNAME)/ -type l | xargs $(RM) # annoying on Windows tar -cf $(TARNAME).tar $(TARNAME) $(RM) -r $(TARNAME) gzip -c -f -9 $(TARNAME).tar > $(TARNAME).tar.gz From 6942ae8d9fc38438051a198244552d84cfe01c56 Mon Sep 17 00:00:00 2001 From: LitoMore Date: Mon, 28 Jun 2021 10:43:47 +0800 Subject: [PATCH 2/2] build: remove unused comment Co-authored-by: Antoine du Hamel --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6a060d93827bc2..07a6d401c0f9bc 100644 --- a/Makefile +++ b/Makefile @@ -1093,7 +1093,7 @@ $(TARBALL): release-only doc-only find $(TARNAME)/deps/v8/test -type f ! -regex '.*/test/torque/.*' | xargs $(RM) find $(TARNAME)/deps/zlib/contrib/* -type d ! -regex '.*/contrib/optimizations$$' | xargs $(RM) -r find $(TARNAME)/ -name ".eslint*" -maxdepth 2 | xargs $(RM) - find $(TARNAME)/ -type l | xargs $(RM) # annoying on Windows + find $(TARNAME)/ -type l | xargs $(RM) tar -cf $(TARNAME).tar $(TARNAME) $(RM) -r $(TARNAME) gzip -c -f -9 $(TARNAME).tar > $(TARNAME).tar.gz