From da3540c0c134331c10f1a8d124ee0925e57f8112 Mon Sep 17 00:00:00 2001 From: oppiliappan Date: Mon, 01 Sep 2025 19:06:02 +0000 Subject: [PATCH] patchutil: do not print err TODO: this needs to be deprecated gracefully. Signed-off-by: oppiliappan --- patchutil/combinediff.go | 2 +- 1 file(s) changed, 1 insertion(s)(+), 1 deletion(s)(-) diff --git a/patchutil/combinediff.go b/patchutil/combinediff.go --- a/patchutil/combinediff.go +++ b/patchutil/combinediff.go @@ -119,7 +119,7 @@ // we have f1 and f2, combine them combined, err := combineFiles(f1, f2) if err != nil { - fmt.Println(err) + // fmt.Println(err) } // combined can be nil commit 2 reverted all changes from commit 1 -- tangled.sh