From eabda103a75c6a2aa6b00099ccb600a4828207eb Mon Sep 17 00:00:00 2001 From: "Richard T. Carback III" <rick.carback@gmail.com> Date: Thu, 7 Jul 2022 17:26:16 +0000 Subject: [PATCH] Fix integration bug --- cmd/init.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmd/init.go b/cmd/init.go index 75ea00e6c..d56f9f1f9 100644 --- a/cmd/init.go +++ b/cmd/init.go @@ -9,6 +9,8 @@ package cmd import ( + "fmt" + "github.com/spf13/cobra" jww "github.com/spf13/jwalterweatherman" "github.com/spf13/viper" @@ -24,6 +26,9 @@ var initCmd = &cobra.Command{ jww.INFO.Printf("User: %s", receptionIdentity.ID) writeContact(receptionIdentity.GetContact()) + + // NOTE: DO NOT REMOVE THIS LINE. YOU WILL BREAK INTEGRATION + fmt.Printf("%s\n", receptionIdentity.ID) }, } -- GitLab