-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopy_dlls_release.bat
28 lines (24 loc) · 1.41 KB
/
copy_dlls_release.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
@echo off
set CONFIGURATION=Release
if exist "%REDOX_EXTENSIONS_INSTALL%" (
xcopy /EYI bin\%CONFIGURATION%\Databases "%REDOX_EXTENSIONS_INSTALL%\Databases"
xcopy /EYI bin\%CONFIGURATION%\mysettings.json "%REDOX_EXTENSIONS_INSTALL%\mysettings.json"
xcopy /EYI bin\%CONFIGURATION%\RedoxExtensions.* "%REDOX_EXTENSIONS_INSTALL%"
xcopy /EYI bin\%CONFIGURATION%\RedoxLib.* "%REDOX_EXTENSIONS_INSTALL%"
xcopy /EYI bin\%CONFIGURATION%\RedoxFilter.* "%REDOX_EXTENSIONS_INSTALL%"
) else if exist "D:\Games\Decal Plugins\RedoxExtensions" (
xcopy /EYI bin\%CONFIGURATION%\Databases "D:\Games\Decal Plugins\RedoxExtensions\Databases"
xcopy /EYI bin\%CONFIGURATION%\RedoxExtensions.* "D:\Games\Decal Plugins\RedoxExtensions\"
xcopy /EYI bin\%CONFIGURATION%\RedoxLib.* "D:\Games\Decal Plugins\RedoxExtensions\"
xcopy /EYI bin\%CONFIGURATION%\RedoxFilter.* "D:\Games\Decal Plugins\RedoxExtensions\"
) else if exist "C:\Games\Decal Plugins\RedoxExtensions" (
xcopy /EYI bin\%CONFIGURATION%\Databases "C:\Games\Decal Plugins\RedoxExtensions\Databases"
xcopy /EYI bin\%CONFIGURATION%\RedoxExtensions.* "C:\Games\Decal Plugins\RedoxExtensions\"
xcopy /EYI bin\%CONFIGURATION%\RedoxLib.* "C:\Games\Decal Plugins\RedoxExtensions\"
xcopy /EYI bin\%CONFIGURATION%\RedoxFilter.* "C:\Games\Decal Plugins\RedoxExtensions\"
) else (
echo.
echo No Redox Extensions Install Directory Found
echo.
)
pause