summaryrefslogtreecommitdiffstats
path: root/pkg/commands/oscommands/exec_live.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/commands/oscommands/exec_live.go')
-rw-r--r--pkg/commands/oscommands/exec_live.go12
1 files changed, 10 insertions, 2 deletions
diff --git a/pkg/commands/oscommands/exec_live.go b/pkg/commands/oscommands/exec_live.go
index 21c1c8d27..3526cdbd2 100644
--- a/pkg/commands/oscommands/exec_live.go
+++ b/pkg/commands/oscommands/exec_live.go
@@ -13,15 +13,23 @@ import (
"github.com/jesseduffield/lazygit/pkg/utils"
)
+type CredentialName string
+
+const (
+ Password CredentialName = "password"
+ Username = "username"
+ Passphrase = "passphrase"
+)
+
// RunAndDetectCredentialRequest detect a username / password / passphrase question in a command
// promptUserForCredential is a function that gets executed when this function detect you need to fillin a password or passphrase
// The promptUserForCredential argument will be "username", "password" or "passphrase" and expects the user's password/passphrase or username back
-func (self *cmdObjRunner) RunAndDetectCredentialRequest(cmdObj ICmdObj, promptUserForCredential func(string) string) error {
+func (self *cmdObjRunner) RunAndDetectCredentialRequest(cmdObj ICmdObj, promptUserForCredential func(CredentialName) string) error {
ttyText := ""
err := self.RunCommandWithOutputLive(cmdObj, func(word string) string {
ttyText = ttyText + " " + word
- prompts := map[string]string{
+ prompts := map[string]CredentialName{
`.+'s password:`: "password",
`Password\s*for\s*'.+':`: "password",
`Username\s*for\s*'.+':`: "username",