Remove duplicate alias.

This commit is contained in:
trading_peter 2024-09-12 00:21:14 +02:00
parent db20d07245
commit 7bc4dc84df

View File

@ -22,7 +22,7 @@ func Execute() {
app := &cli.App{ app := &cli.App{
Name: "hoster", Name: "hoster",
Usage: "Hoster", Usage: "Hoster",
Version: "1.0.4", Version: "1.0.6",
Commands: []*cli.Command{ Commands: []*cli.Command{
{ {
Name: "new", Name: "new",
@ -36,7 +36,6 @@ func Execute() {
}, },
&cli.StringFlag{ &cli.StringFlag{
Name: "custom-path", Name: "custom-path",
Aliases: []string{"d"},
Usage: "The path of the project. Defaults to ${projects.root}/${name}.", Usage: "The path of the project. Defaults to ${projects.root}/${name}.",
Required: false, Required: false,
}, },