From 0acb2223bcabb41f176e1620cd8b5658818d32b9 Mon Sep 17 00:00:00 2001 From: Lennart Kats Date: Fri, 20 Dec 2024 21:05:37 +0100 Subject: [PATCH] Fix silly lint error --- bundle/config/mutator/translate_paths.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/config/mutator/translate_paths.go b/bundle/config/mutator/translate_paths.go index b6396766e..306efc29d 100644 --- a/bundle/config/mutator/translate_paths.go +++ b/bundle/config/mutator/translate_paths.go @@ -71,7 +71,7 @@ type translateContext struct { // // localPath - the full local file system path. // localRelPath - the relative path from the base directory. -func GetLocalPath(ctx context.Context, b *bundle.Bundle, sourceDir string, p string) (string, string, error) { +func GetLocalPath(ctx context.Context, b *bundle.Bundle, sourceDir, p string) (string, string, error) { if p == "" { return "", "", fmt.Errorf("path cannot be empty") }