From 45518467dc1c3abe8afa967f9368a899217475cc Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Fri, 6 Mar 2026 15:28:29 +0100 Subject: [PATCH] Fix 'restricted open_basedir' e2e test --- src/Internal/AgentDetector.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Internal/AgentDetector.php b/src/Internal/AgentDetector.php index 88e700bd68..01181a25e6 100644 --- a/src/Internal/AgentDetector.php +++ b/src/Internal/AgentDetector.php @@ -52,7 +52,7 @@ public static function isRunningInAgent(): bool return true; } - if (file_exists('/opt/.devin')) { + if (@file_exists('/opt/.devin')) { return true; }