From 7d729b03c8a7c99c590bd1f6f78f159c7c06ca59 Mon Sep 17 00:00:00 2001 From: Ian Eyberg Date: Mon, 16 Dec 2024 08:00:39 -0800 Subject: [PATCH] . --- fs/manifest.go | 1 - 1 file changed, 1 deletion(-) diff --git a/fs/manifest.go b/fs/manifest.go index 8c1fe422..7c874a5d 100644 --- a/fs/manifest.go +++ b/fs/manifest.go @@ -81,7 +81,6 @@ func (m *Manifest) AddUserProgram(imgpath string, arm bool) (err error) { imgpath = filepath.Join(m.targetRoot, imgpath) } - fmt.Printf("adding user program of %s\n", imgpath) a := archCheck(imgpath) if arm && a != "arm" || !arm && a == "arm" { fmt.Printf("you are trying to mix %s [%s] with the wrong kernel\n", imgpath, a)