From c2df5835b59b8965b75968572359af439e2166e2 Mon Sep 17 00:00:00 2001 From: Alan Mason <1923621+2Shirt@users.noreply.github.com> Date: Sun, 3 Dec 2017 10:55:54 -0800 Subject: [PATCH] Avoid copying WinPE folders during Build Kit.cmd --- Build Kit.cmd | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Build Kit.cmd b/Build Kit.cmd index 54dde234..063d34c6 100644 --- a/Build Kit.cmd +++ b/Build Kit.cmd @@ -12,9 +12,11 @@ rem Verifies the environment before launching item if not exist ".bin\Scripts\build_kit.ps1" (goto ErrorBuildKitMissing) :PrepNewKit -rem Copy base files to a new folder OUT_KIT\%KIT_NAME_FULL% -robocopy /e . OUT_KIT /xd .git .kit_items OUT_KIT /xf .gitignore "Build Kit.cmd" -robocopy /e .kit_items OUT_KIT +rem Copy base files to a new folder OUT_KIT +robocopy /e .bin OUT_KIT\.bin +robocopy /e .cbin OUT_KIT\.cbin +copy LICENSE.txt OUT_KIT\LICENSE.txt +copy README.md OUT_KIT\README.md copy Images\ConEmu.png OUT_KIT\.bin\ConEmu\ mkdir OUT_KIT\.cbin >nul 2>&1 attrib +h OUT_KIT\.bin >nul 2>&1