@echo off

set ROOT=%cd%
set NAME=%~n0
set ARGV=%*

if exist zephyr (
	cd zephyr
)

cmd /c python %NAME%.py %ARGV%
set ERR=%errorlevel%

cd %ROOT%
exit /b %ERR%