Skip to content

Commit

Permalink
feat: display current dir name
Browse files Browse the repository at this point in the history
  • Loading branch information
metacosm committed Feb 27, 2020
1 parent 93072a1 commit c9d31d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmdutil/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func (o *CreateOptions) Complete(name string, cmd *cobra.Command, args []string)
o.Delegate.Set(entity.Entity)
}
}
} else if IsInteractive(cmd) && ui.Proceed(fmt.Sprintf("Found %d %s(s), do you want to %s from them", size, t, o.operationName)) {
} else if IsInteractive(cmd) && ui.Proceed(fmt.Sprintf("Found %d %s(s) in %s, do you want to %s from them", size, t, currentDirName, o.operationName)) {
o.Name = ui.Select(t, names, o.Name)
}
}
Expand Down

0 comments on commit c9d31d7

Please sign in to comment.