mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-01 02:05:00 +00:00
fix: Remove always-true condition for Windows env var message
This commit is contained in:
parent
60aca3a241
commit
85b1303460
1 changed files with 1 additions and 1 deletions
|
@ -1232,7 +1232,7 @@ def sanity_check_model(io, model):
|
||||||
status = "Set" if value else "Not set"
|
status = "Set" if value else "Not set"
|
||||||
io.tool_output(f"- {key}: {status}")
|
io.tool_output(f"- {key}: {status}")
|
||||||
|
|
||||||
if platform.system() == "Windows" or True:
|
if platform.system() == "Windows":
|
||||||
io.tool_output(
|
io.tool_output(
|
||||||
"If you just set these environment variables using `setx` you may need to restart"
|
"If you just set these environment variables using `setx` you may need to restart"
|
||||||
" your terminal or command prompt for the changes to take effect."
|
" your terminal or command prompt for the changes to take effect."
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue