From 8921006641695420565fbafb9a9f7af478b00a6d Mon Sep 17 00:00:00 2001 From: facundoolano Date: Sat, 2 Mar 2024 10:38:53 -0300 Subject: [PATCH] fix host flag shorthand --- commands/serve.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/serve.go b/commands/serve.go index b39f893..155ce1f 100644 --- a/commands/serve.go +++ b/commands/serve.go @@ -18,7 +18,7 @@ import ( type Serve struct { ProjectDir string `arg:"" name:"path" optional:"" default:"." help:"Path to the website project to serve."` - Host string `short:"h" default:"localhost" help:"Host to run the server on."` + Host string `short:"H" default:"localhost" help:"Host to run the server on."` Port int `short:"p" default:"4001" help:"Port to run the server on."` NoReload bool `help:"Disable live reloading."` }