Skip to content
This repository was archived by the owner on Feb 16, 2023. It is now read-only.

Commit 07d8c89

Browse files
committed
Fix build issue
1 parent 54aa97d commit 07d8c89

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internals/secrethub/service_init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func (cmd *ServiceInitCommand) Run() error {
105105
// Register registers the command, arguments and flags on the provided Registerer.
106106
func (cmd *ServiceInitCommand) Register(r command.Registerer) {
107107
clause := r.Command("init", "Create a new service account.")
108-
clause.Arg("repo", "The service account is attached to the repository in this path.").Required().PlaceHolder(repoPathPlaceHolder).SetValue(&cmd.path)
108+
clause.Arg("repo", "The service account is attached to the repository in this path.").Required().PlaceHolder(repoPathPlaceHolder).SetValue(&cmd.repo)
109109
clause.Flag("description", "A description for the service so others will recognize it.").StringVar(&cmd.description)
110110
clause.Flag("descr", "").Hidden().StringVar(&cmd.description)
111111
clause.Flag("desc", "").Hidden().StringVar(&cmd.description)

0 commit comments

Comments
 (0)