-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate.bat
61 lines (46 loc) · 2.01 KB
/
update.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@echo off
setlocal
:: Set the source and destination folders
set "source_folder=H:\GitHub\cyberscript-mod-template\bin\x64\plugins\cyber_engine_tweaks\mods\mytemplate\libs"
set "destination_folder=H:\GitHub\datapack\datapack"
:: Set the file name to check and replace (without path)
set "file_name=cyberlibs.lua"
:: Check and replace matching files in destination subfolders
for /r "%destination_folder%" %%f in (*) do (
if /i "%%~nxf"=="%file_name%" (
if exist "%source_folder%\%file_name%" (
echo Replacing "%%f" with "%source_folder%\%file_name%"
copy /y "%source_folder%\%file_name%" "%%f"
)
)
)
echo File check and replace completed for %file_name%.
set "source_folder=H:\GitHub\cyberscript-mod-template\bin\x64\plugins\cyber_engine_tweaks\mods\mytemplate"
:: Set the file name to check and replace (without path)
set "file_name=init.lua"
:: Check and replace matching files in destination subfolders
for /r "%destination_folder%" %%f in (*) do (
if /i "%%~nxf"=="%file_name%" (
if exist "%source_folder%\%file_name%" (
echo Replacing "%%f" with "%source_folder%\%file_name%"
copy /y "%source_folder%\%file_name%" "%%f"
)
)
)
echo File check and replace completed for %file_name%.
:: Set the source and destination folders
set "source_folder=H:\GitHub\cyberscript-mod-template\bin\x64\plugins\cyber_engine_tweaks\mods\mytemplate\libs"
set "destination_folder=G:\SteamLibrary\steamapps\common\Cyberpunk 2077\bin\x64\plugins\cyber_engine_tweaks\mods"
:: Set the file name to check and replace (without path)
set "file_name=cyberlibs.lua"
:: Check and replace matching files in destination subfolders
for /r "%destination_folder%" %%f in (*) do (
if /i "%%~nxf"=="%file_name%" (
if exist "%source_folder%\%file_name%" (
echo Replacing "%%f" with "%source_folder%\%file_name%"
copy /y "%source_folder%\%file_name%" "%%f"
)
)
)
echo File check and replace in mods folder completed for %file_name%.
pause