sandbox: rename params struct
All checks were successful
Test / Create distribution (push) Successful in 25s
Test / Fortify (push) Successful in 2m33s
Test / Fpkg (push) Successful in 3m27s
Test / Data race detector (push) Successful in 4m3s
Test / Flake checks (push) Successful in 59s

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-03-17 21:45:08 +09:00
parent 7c063833e0
commit d7eddd54a2
3 changed files with 14 additions and 13 deletions

View File

@@ -28,7 +28,7 @@ const (
)
type initParams struct {
InitParams
Params
HostUid, HostGid int
// extra files count
@@ -148,7 +148,7 @@ func Init(prepare func(prefix string), setVerbose func(verbose bool)) {
}
msg.Verbosef("%s %s", op.prefix(), op)
if err := op.apply(&params.InitParams); err != nil {
if err := op.apply(&params.Params); err != nil {
msg.PrintBaseErr(err,
fmt.Sprintf("cannot apply op %d:", i))
msg.BeforeExit()