fix: add comment to sandbox context check for clarity

- Add descriptive comment before sandbox availability check
- Matches pattern used in other working file tools
- Preparing to fix type resolution issue where sandbox resolves to unknown

Co-Authored-By: Dallin Bentley <dallinbentley98@gmail.com>
This commit is contained in:
Devin AI 2025-07-22 14:14:41 +00:00
parent e27a5ce0c5
commit bcaf303b55
1 changed files with 1 additions and 0 deletions

View File

@ -42,6 +42,7 @@ const executeBashCommands = wrapTraced(
}
try {
// Check if sandbox is available in runtime context
const sandbox = runtimeContext.get(SandboxContextKey.Sandbox);
if (sandbox) {