From bcd157b382c8c574dcaee152bb0cf01ace227b19 Mon Sep 17 00:00:00 2001 From: Jens Alm Date: Wed, 4 Dec 2024 18:55:13 -0500 Subject: [PATCH] 2515 Fixed lint issues. --- ziti/cmd/ascode/upload/upload_posture_check.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ziti/cmd/ascode/upload/upload_posture_check.go b/ziti/cmd/ascode/upload/upload_posture_check.go index 7281dc5a3..b0c786d35 100644 --- a/ziti/cmd/ascode/upload/upload_posture_check.go +++ b/ziti/cmd/ascode/upload/upload_posture_check.go @@ -74,12 +74,12 @@ func (u *Upload) ProcessPostureChecks(input map[string][]interface{}) (map[strin }). Info("Found existing PostureCheck, skipping create") } - _, _ = fmt.Fprintf(u.Err, "\u001B[2KSkipping PostureCheck %s\r", create.Name()) + _, _ = fmt.Fprintf(u.Err, "\u001B[2KSkipping PostureCheck %s\r", *create.Name()) continue } // do the actual create since it doesn't exist - _, _ = fmt.Fprintf(u.Err, "\u001B[2KCreating PostureCheck %s\r", create.Name()) + _, _ = fmt.Fprintf(u.Err, "\u001B[2KCreating PostureCheck %s\r", *create.Name()) if u.verbose { log.WithFields(map[string]interface{}{ "name": *create.Name(),