diff options
| author | Ophestra <cat@gensokyo.uk> | 2024-12-29 00:56:14 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2024-12-29 00:56:14 +0900 |
| commit | c1a459a0b16f3039794ed2da2c2efc7cee85babe (patch) | |
| tree | bf93c86682edd1698011a39dd25eb51c963725a1 /cmd/fpkg/start.go | |
| parent | 5125e96ecf9c95d39f91870c2a78ba474cb4021d (diff) | |
cmd/fpkg/start: correct drop to shell wording
Activation no longer happens during application startup.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'cmd/fpkg/start.go')
| -rw-r--r-- | cmd/fpkg/start.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/fpkg/start.go b/cmd/fpkg/start.go index 498a3f35..6b92fcca 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) |
