summaryrefslogtreecommitdiffstats
path: root/pkg/commands/tags.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/commands/tags.go')
-rw-r--r--pkg/commands/tags.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/commands/tags.go b/pkg/commands/tags.go
index af40ae603..9aa327dd3 100644
--- a/pkg/commands/tags.go
+++ b/pkg/commands/tags.go
@@ -15,5 +15,5 @@ func (c *GitCommand) DeleteTag(tagName string) error {
func (c *GitCommand) PushTag(remoteName string, tagName string, promptUserForCredential func(string) string) error {
cmdStr := fmt.Sprintf("git push %s %s", c.OSCommand.Quote(remoteName), c.OSCommand.Quote(tagName))
cmdObj := c.NewCmdObjFromStr(cmdStr)
- return c.OSCommand.DetectUnamePass(cmdObj, promptUserForCredential)
+ return c.DetectUnamePass(cmdObj, promptUserForCredential)
}