Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Guidelines for modifications:
* Miguel Alonso Jr
* Mingyu Lee
* Muhong Guo
* Narendra Dahile
* Neel Anand Jawale
* Nicola Loi
* Norbert Cygiert
Expand Down
20 changes: 4 additions & 16 deletions isaaclab.bat
Original file line number Diff line number Diff line change
Expand Up @@ -511,14 +511,8 @@ if "%arg%"=="-i" (
call :extract_python_exe
echo [INFO] Using python from: !python_exe!
REM Loop through all arguments - mimic shift
set "allArgs="
for %%a in (%*) do (
REM Append each argument to the variable, skip the first one
if defined skip (
set "allArgs=!allArgs! %%a"
) else (
set "skip=1"
)
for /f "tokens=1,* delims= " %%a in ("%*") do (
set "allArgs=%%b"
)
call !python_exe! !allArgs!
goto :end
Expand All @@ -527,14 +521,8 @@ if "%arg%"=="-i" (
call :extract_python_exe
echo [INFO] Using python from: !python_exe!
REM Loop through all arguments - mimic shift
set "allArgs="
for %%a in (%*) do (
REM Append each argument to the variable, skip the first one
if defined skip (
set "allArgs=!allArgs! %%a"
) else (
set "skip=1"
)
for /f "tokens=1,* delims= " %%a in ("%*") do (
set "allArgs=%%b"
)
call !python_exe! !allArgs!
goto :end
Expand Down
Loading