mirror of
https://github.com/0O0o0oOoO00/Alas.git
synced 2026-05-14 16:59:25 +08:00
14 lines
206 B
Batchfile
14 lines
206 B
Batchfile
@echo off
|
|
|
|
if not exist .env (
|
|
echo .env file not found!
|
|
exit /b 1
|
|
)
|
|
|
|
for /f "tokens=1* delims==" %%a in (.env) do (
|
|
if not "%%a" == "" (
|
|
set %%a=%%b
|
|
echo Set %%a to %%b
|
|
)
|
|
)
|