From 9c839f4dd71e9234b1dd7fc844af750d64c677d2 Mon Sep 17 00:00:00 2001 From: bi Date: Mon, 16 Jul 2018 18:32:36 +0300 Subject: [PATCH] Add batch-file for workshop whitelisting process It copies nessessary game assets to "workshop_uploader_folder/scripts", so Fatshark will be able to complile VMF themselves and sign it. --- copy_assets_for_whitelisting.bat | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 copy_assets_for_whitelisting.bat diff --git a/copy_assets_for_whitelisting.bat b/copy_assets_for_whitelisting.bat new file mode 100644 index 0000000..a995c68 --- /dev/null +++ b/copy_assets_for_whitelisting.bat @@ -0,0 +1,8 @@ +cd vmf +xcopy /s/y .\core .\bundleV2\scripts\core\ +xcopy /s/y .\gui .\bundleV2\scripts\gui\ +xcopy /s/y .\localization .\bundleV2\scripts\localization\ +xcopy /s/y .\materials .\bundleV2\scripts\materials\ +xcopy /s/y .\resource_packages .\bundleV2\scripts\resource_packages\ +xcopy /s/y .\scripts .\bundleV2\scripts\scripts\ +xcopy /y .\vmf.mod .\bundleV2\scripts\vmf.mod* \ No newline at end of file