From 3d7b74d8808d19c6bddd4b743cffb71e1c3bf488 Mon Sep 17 00:00:00 2001 From: Juan Bustamante Date: Fri, 3 Feb 2023 18:24:20 -0500 Subject: [PATCH] WIP - fixing linting error Signed-off-by: Juan Bustamante --- pkg/client/build.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/client/build.go b/pkg/client/build.go index 5c47bf24cf..1e407dedb6 100644 --- a/pkg/client/build.go +++ b/pkg/client/build.go @@ -1213,7 +1213,7 @@ func fullImagePath(inputImageRef InputImageReference, create bool) (string, erro if create { if err := os.MkdirAll(imagePath, os.ModePerm); err != nil { - return "", errors.Wrapf(err, "creating %s layout application destination", fullImagePath) + return "", errors.Wrapf(err, "creating %s layout application destination", imagePath) } }