cmd/fpkg/start: correct drop to shell wording
Some checks failed
Tests / Go tests (push) Successful in 36s
Nix / NixOS tests (push) Has been cancelled

Activation no longer happens during application startup.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
Ophestra 2024-12-29 00:46:58 +09:00
parent f2cc3b0952
commit 905b9053d2
Signed by: cat
SSH Key Fingerprint: SHA256:gQ67O0enBZ7UdZypgtspB2FDM1g3GVw8nX0XSdcFw8Q

View File

@ -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)