From 321a55b9c2c65d7782ae4eff47231566d0709b2e Mon Sep 17 00:00:00 2001 From: Manoj Mahapatra Date: Mon, 9 Mar 2026 23:58:27 -0700 Subject: [PATCH] fix: incorrect API usage for symlink entry --- Sources/cctl/RootfsCommand.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/cctl/RootfsCommand.swift b/Sources/cctl/RootfsCommand.swift index 10ee29f26..1ac10e930 100644 --- a/Sources/cctl/RootfsCommand.swift +++ b/Sources/cctl/RootfsCommand.swift @@ -172,7 +172,7 @@ extension Application { entry.path = "proc/self/exe" entry.symlinkTarget = "sbin/vminitd" entry.size = nil - try writer.writeEntry(entry: entry, data: data) + try writer.writeEntry(entry: entry, data: nil) try writer.finishEncoding() } }