summaryrefslogtreecommitdiff
path: root/cmd/gotosocial/testrigcommands.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/gotosocial/testrigcommands.go')
-rw-r--r--cmd/gotosocial/testrigcommands.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/gotosocial/testrigcommands.go b/cmd/gotosocial/testrigcommands.go
index 9b9aa3806..aabe04267 100644
--- a/cmd/gotosocial/testrigcommands.go
+++ b/cmd/gotosocial/testrigcommands.go
@@ -23,7 +23,7 @@ import (
"github.com/urfave/cli/v2"
)
-func testrigCommands() []*cli.Command {
+func testrigCommands(allFlags []cli.Flag) []*cli.Command {
return []*cli.Command{
{
Name: "testrig",
@@ -33,7 +33,7 @@ func testrigCommands() []*cli.Command {
Name: "start",
Usage: "start the gotosocial testrig",
Action: func(c *cli.Context) error {
- return runAction(c, testrig.Start)
+ return runAction(c, allFlags, testrig.Start)
},
},
},