@echo off
set SELF_PATH=%~dp0
cd /d %SELF_PATH%
xcopy src\hode.dll dest\ /Y /F
call :SuccessOrDie
goto end
:SuccessOrDie
if not %errorlevel% == 0 (
echo [ERROR] :P
cd /d %SELF_PATH%
exit 1
)
exit /b 0
:end
echo [SUCCESS] :)
echo on
exit 0