From be94780315b85e51204e28c41fcad34e507d3d3c Mon Sep 17 00:00:00 2001 From: Amine Hilaly Date: Tue, 27 Aug 2019 00:32:30 +0200 Subject: bridge/github: recover terminal state in password prompts commands: error if a token is provide but not the bridge name and target --- bridge/github/config.go | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'bridge/github') diff --git a/bridge/github/config.go b/bridge/github/config.go index 954bf845..d1b57e10 100644 --- a/bridge/github/config.go +++ b/bridge/github/config.go @@ -21,6 +21,7 @@ import ( "github.com/MichaelMure/git-bug/bridge/core" "github.com/MichaelMure/git-bug/repository" + "github.com/MichaelMure/git-bug/util/interrupt" ) const ( @@ -236,6 +237,16 @@ func promptTokenOptions(owner, project string) (string, error) { return promptToken() } + // Register restore state cleaner before prompting passwords inputs + termState, err := terminal.GetState(int(syscall.Stdin)) + if err != nil { + return "", err + } + + interrupt.RegisterCleaner(func() error { + return terminal.Restore(int(syscall.Stdin), termState) + }) + return loginAndRequestToken(owner, project) } } -- cgit