From 8f1a53ffe768a40d324bdb2ee0502e59641c8ba4 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Fri, 12 Dec 2025 22:20:52 -0500 Subject: [PATCH] fix CI --- src/compile/cache_config.zig | 1 - src/compile/mod.zig | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compile/cache_config.zig b/src/compile/cache_config.zig index 238a8e7c3f..4100d05d78 100644 --- a/src/compile/cache_config.zig +++ b/src/compile/cache_config.zig @@ -225,4 +225,3 @@ pub fn getCompilerVersionDir(allocator: Allocator) ![]u8 { const version_info = build_options.compiler_version; return allocator.dupe(u8, version_info); } - diff --git a/src/compile/mod.zig b/src/compile/mod.zig index 9764e3e709..cf61ff9bc5 100644 --- a/src/compile/mod.zig +++ b/src/compile/mod.zig @@ -19,6 +19,7 @@ pub const CacheManager = manager.CacheManager; pub const CacheResult = manager.CacheResult; pub const CacheConfig = config.CacheConfig; pub const CacheStats = config.CacheStats; +/// Cache cleanup utilities for managing temporary and persistent cache files. pub const CacheCleanup = cleanup; pub const CleanupStats = cleanup.CleanupStats; pub const PackageEnv = package.PackageEnv;