mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
14 lines
185 B
Batchfile
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
|