Skip to content

Commit

Permalink
Fix env delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
ajhai authored Aug 28, 2023
1 parent cbeb892 commit c156135
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run-llmstack.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ setlocal

rem set LLMSTACK_PORT and other environment variables
if exist .env (
for /F "delims=# eol=# tokens=1,2" %%i in (.env) do set "%%i=%%j"
for /F "delims== eol=# tokens=1,2" %%i in (.env) do set "%%i=%%j"
) else (
echo ".env file not found"
exit /B
Expand All @@ -29,4 +29,4 @@ rem open the web browser
start http://localhost:%LLMSTACK_PORT%

:end
endlocal
endlocal

0 comments on commit c156135

Please sign in to comment.