Skip to content

Commit c156135

Browse files
authored
Fix env delimiter
1 parent cbeb892 commit c156135

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

run-llmstack.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ setlocal
33

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

3131
:end
32-
endlocal
32+
endlocal

0 commit comments

Comments
 (0)