From eb9d9a61e601254e58ea80ef8d34b64785982d60 Mon Sep 17 00:00:00 2001 From: Guy Thomas Date: Thu, 2 Jul 2026 20:12:07 +0200 Subject: [PATCH] Issue_147: Ci command should never use a cache --- src/Command/CI.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Command/CI.php b/src/Command/CI.php index a390fba..cc6abb0 100644 --- a/src/Command/CI.php +++ b/src/Command/CI.php @@ -29,6 +29,7 @@ final public static function instance(): CI { } public function execute(Options $options): void { + StaticVars::$noCache = true; // CI command should never use cache, always build fresh. $this->cli = StaticVars::$cli; $args = $options->getArgs();