xonsh/scripts/xonsh.bat
2016-08-18 21:32:57 +03:00

14 lines
185 B
Batchfile

@echo off
call :s_which py.exe
if not "%_path%" == "" (
py -3 -m xonsh %*
) else (
python -m xonsh %*
)
goto :eof
:s_which
setlocal
endlocal & set _path=%~$PATH:1
goto :eof