mirror of https://github.com/aliasrobotics/cai.git
add true lower
This commit is contained in:
parent
906b874f2e
commit
10668f1b44
|
|
@ -1014,7 +1014,7 @@ def run_command(command, ctf=None, stdout=False, # pylint: disable=too-many-arg
|
|||
return _run_local(command, stdout, timeout, stream, call_id, tool_name, _get_workspace_dir(), args) # noqa E501
|
||||
|
||||
# --- CTF Execution ---
|
||||
if ctf and os.getenv('CTF_INSIDE', True) == "True":
|
||||
if ctf and os.getenv('CTF_INSIDE', True).lower() == "true":
|
||||
# If streaming is enabled and we have a call_id, show streaming UI for CTF too
|
||||
if stream:
|
||||
# Import the streaming utilities from util
|
||||
|
|
|
|||
Loading…
Reference in New Issue