aboutsummaryrefslogtreecommitdiffstats
path: root/commands/new.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/new.go')
-rw-r--r--commands/new.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/commands/new.go b/commands/new.go
index a2373515..4f6008cf 100644
--- a/commands/new.go
+++ b/commands/new.go
@@ -3,6 +3,7 @@ package commands
import (
"errors"
"flag"
+ "fmt"
"github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/bug/operations"
"github.com/MichaelMure/git-bug/commands/input"
@@ -60,6 +61,8 @@ func runNewBug(repo repository.Repo, args []string) error {
err = newbug.Commit(repo)
+ fmt.Println(newbug.HumanId())
+
return err
}