mirror of
https://github.com/slorelee/wimbuilder2.git
synced 2025-05-06 18:25:51 +08:00
10 lines
235 B
Batchfile
10 lines
235 B
Batchfile
rem MACRO:ApplyPatch
|
|
|
|
set "_applypatch_entryfile=%~2"
|
|
if "x%~2"=="x" set _applypatch_entryfile=main.bat
|
|
echo Applying Patch: %~1\%_applypatch_entryfile%
|
|
pushd "%~1"
|
|
call %_applypatch_entryfile%
|
|
set _applypatch_entryfile=
|
|
popd
|