Skip to content

Commit a924e65

Browse files
authored
Fix binay name in help output (#105)
Currently the name of the binary is `oran-o2ims` but the output of the `--help` option says `o2ims`. This patch fixes that. Related: #104 Signed-off-by: Juan Hernandez <[email protected]>
1 parent ec8d768 commit a924e65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: internal/tool.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ func (t *Tool) run(cmd *cobra.Command, args []string) error {
212212
func (t *Tool) createCommand() error {
213213
// Create the main command:
214214
t.cmd = &cobra.Command{
215-
Use: "o2ims",
215+
Use: "oran-o2ims",
216216
Long: "O2 IMS",
217217
PersistentPreRunE: t.run,
218218
SilenceErrors: true,

0 commit comments

Comments
 (0)