Files
cultivation-world-simulator/tools/package/set_env.cmd
2025-10-28 01:19:44 +08:00

17 lines
435 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@echo off
setlocal ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION
cd /d "%~dp0"
echo 请输入 Qwen API Key
set /p QWEN_API_KEY=
if defined QWEN_API_KEY (
setx QWEN_API_KEY "%QWEN_API_KEY%" >nul
set QWEN_API_KEY=%QWEN_API_KEY%
echo 已设置环境变量 QWEN_API_KEY当前窗口已生效系统环境变量将对新进程生效
) else (
echo 未输入,请关闭窗口后重新运行并输入。
)
endlocal
exit /b 0