From fee31e5addd500df103d6e8664b73eab183034c6 Mon Sep 17 00:00:00 2001 From: Jaewon Date: Mon, 11 May 2026 16:29:52 -0700 Subject: [PATCH] Make maxIDLength public --- Sources/Containerization/LinuxContainer.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Containerization/LinuxContainer.swift b/Sources/Containerization/LinuxContainer.swift index 1efeac95..18f51e51 100644 --- a/Sources/Containerization/LinuxContainer.swift +++ b/Sources/Containerization/LinuxContainer.swift @@ -28,7 +28,7 @@ import struct ContainerizationOS.Terminal /// `LinuxContainer` is an easy to use type for launching and managing the /// full lifecycle of a Linux container ran inside of a virtual machine. public final class LinuxContainer: Container, Sendable { - static let maxIDLength = 64 + public static let maxIDLength = 64 /// The identifier of the container. public let id: String