aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Moyer <smoyer1@selesy.com>2022-06-06 10:13:42 -0400
committerSteve Moyer <smoyer1@selesy.com>2022-06-06 10:13:42 -0400
commit848f72537d45b750dd78947c7f193402669fcaf1 (patch)
treebdad7d72fd19bcda2e6f3ab413092eb061db8ab8
parent54306a8f0a6f3223042e40423f0b9378a420d200 (diff)
downloadgit-bug-848f72537d45b750dd78947c7f193402669fcaf1.tar.gz
fix(808): remove duplication stderr/stdout set-up
-rw-r--r--commands/user_create.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/commands/user_create.go b/commands/user_create.go
index 14a13eac..b5cb0528 100644
--- a/commands/user_create.go
+++ b/commands/user_create.go
@@ -22,9 +22,6 @@ func newUserCreateCommand() *cobra.Command {
Short: "Create a new identity.",
PreRunE: loadBackend(env),
RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
- env.err = out{Writer: cmd.ErrOrStderr()}
- env.out = out{Writer: cmd.OutOrStdout()}
-
return runUserCreate(env, options)
}),
}