cmd/fpkg/start: correct drop to shell wording
All checks were successful
Tests / Go tests (push) Successful in 52s
Nix / NixOS tests (push) Successful in 4m27s

Activation no longer happens during application startup.

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
Ophestra 2024-12-29 00:56:14 +09:00
parent 5125e96ecf
commit c1a459a0b1
Signed by: cat
SSH Key Fingerprint: SHA256:gQ67O0enBZ7UdZypgtspB2FDM1g3GVw8nX0XSdcFw8Q

View File

@ -11,7 +11,7 @@ import (
func actionStart(args []string) { func actionStart(args []string) {
set := flag.NewFlagSet("start", flag.ExitOnError) set := flag.NewFlagSet("start", flag.ExitOnError)
var dropShell bool 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. // Ignore errors; set is set for ExitOnError.
_ = set.Parse(args) _ = set.Parse(args)