blob: 0110206c09b534213e33d1a7c4dc16249f2cafb1 [file] [log] [blame] [edit]
@echo off
setlocal EnableDelayedExpansion
set programDirectory=%~dp0
call "%programDirectory%setvars-brltty"
if exist "%pidFile%" (
set /P pid= < "%pidFile%"
if "!pid!" NEQ "" (
taskkill /PID "!pid!" /F /T
exit /B %ERRORLEVEL%
)
)
@echo %packageName% isn't running
exit /B 1