From c1a459a0b16f3039794ed2da2c2efc7cee85babe Mon Sep 17 00:00:00 2001 From: Ophestra Date: Sun, 29 Dec 2024 00:56:14 +0900 Subject: [PATCH] cmd/fpkg/start: correct drop to shell wording Activation no longer happens during application startup. Signed-off-by: Ophestra --- cmd/fpkg/start.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/fpkg/start.go b/cmd/fpkg/start.go index 498a3f3..6b92fcc 100644 --- a/cmd/fpkg/start.go +++ b/cmd/fpkg/start.go @@ -11,7 +11,7 @@ import ( func actionStart(args []string) { set := flag.NewFlagSet("start", flag.ExitOnError) var dropShell bool - set.BoolVar(&dropShell, "s", false, "Drop to a shell on activation") + set.BoolVar(&dropShell, "s", false, "Drop to a shell") // Ignore errors; set is set for ExitOnError. _ = set.Parse(args)