diff --git a/commands/bridge_pull.go b/commands/bridge_pull.go index 0f3b8413d3f934fe493c8690315107fb74d79262..2bdd24c390694189b117c98713d21f1529a78f53 100644 --- a/commands/bridge_pull.go +++ b/commands/bridge_pull.go @@ -73,7 +73,9 @@ func runBridgePull(cmd *cobra.Command, args []string) error { importedIssues := 0 importedIdentities := 0 for result := range events { - fmt.Println(result.String()) + if result.Event != core.ImportEventNothing { + fmt.Println(result.String()) + } switch result.Event { case core.ImportEventBug: diff --git a/commands/bridge_push.go b/commands/bridge_push.go index 77fe8b29e05b1fece5efb0f5f8ad2fb2dad0af90..a56f9bc3e394c3ad5133c208c81801a4cb60c51b 100644 --- a/commands/bridge_push.go +++ b/commands/bridge_push.go @@ -71,7 +71,9 @@ func runBridgePush(cmd *cobra.Command, args []string) error { exportedIssues := 0 for result := range events { - fmt.Println(result.String()) + if result.Event != core.ExportEventNothing { + fmt.Println(result.String()) + } switch result.Event { case core.ExportEventBug: