Skip to content
Snippets Groups Projects
Commit eabda103 authored by Richard T. Carback III's avatar Richard T. Carback III
Browse files

Fix integration bug

parent a0b71804
No related branches found
No related tags found
3 merge requests!510Release,!267Make BuildReceptionIdentity public, and make backup restore function return a...,!263Hotfix/refactor cmd
...@@ -9,6 +9,8 @@ ...@@ -9,6 +9,8 @@
package cmd package cmd
import ( import (
"fmt"
"github.com/spf13/cobra" "github.com/spf13/cobra"
jww "github.com/spf13/jwalterweatherman" jww "github.com/spf13/jwalterweatherman"
"github.com/spf13/viper" "github.com/spf13/viper"
...@@ -24,6 +26,9 @@ var initCmd = &cobra.Command{ ...@@ -24,6 +26,9 @@ var initCmd = &cobra.Command{
jww.INFO.Printf("User: %s", receptionIdentity.ID) jww.INFO.Printf("User: %s", receptionIdentity.ID)
writeContact(receptionIdentity.GetContact()) writeContact(receptionIdentity.GetContact())
// NOTE: DO NOT REMOVE THIS LINE. YOU WILL BREAK INTEGRATION
fmt.Printf("%s\n", receptionIdentity.ID)
}, },
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment