From 9ec632ec2db2ea0061606d042d6bd1b4378aebc3 Mon Sep 17 00:00:00 2001 From: nvms Date: Wed, 9 Oct 2024 18:12:54 -0400 Subject: [PATCH] fix init --- README.md | 2 +- internal/esr/utils.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f2cdfbc..bedfbbc 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ For the minimalist. For the developer who misses the old web. For the developer ```bash # In an empty directory -$ esr --init +$ esr init $ esr --serve src/index.ts esr :: Serving on http://localhost:1234 ``` diff --git a/internal/esr/utils.go b/internal/esr/utils.go index ade5a65..053ad50 100644 --- a/internal/esr/utils.go +++ b/internal/esr/utils.go @@ -13,5 +13,5 @@ func Die(format string, v ...interface{}) { func ShowHelpMessage() { fmt.Println(`Usage: - esr [--config ] [--serve] [--build] [--watch] `) + esr [init] [--config ] [--serve] [--build] [--watch] `) }