diff --git a/framework/core/src/Support/AssetManager.php b/framework/core/src/Support/AssetManager.php index be50e0d6f..dd511c366 100644 --- a/framework/core/src/Support/AssetManager.php +++ b/framework/core/src/Support/AssetManager.php @@ -83,12 +83,9 @@ class AssetManager foreach ($this->files[$type] as $file) { $lastModTime = max($lastModTime, filemtime($file)); } - $debug = 0; - // $debug = 1; if (! file_exists($file = $dir.'/'.$this->name.'-'.$revision.'.'.$type) - || filemtime($file) < $lastModTime - || $debug) { + || filemtime($file) < $lastModTime) { $this->storage->put($file, $callback()); }