fix ocis root flagset

This commit is contained in:
A.Unger
2021-11-05 12:10:37 +01:00
parent ff7022a256
commit 28b0b8fccd
+3
View File
@@ -3,6 +3,8 @@ package command
import (
"os"
"github.com/owncloud/ocis/ocis/pkg/flagset"
"github.com/owncloud/ocis/ocis-pkg/config"
ociscfg "github.com/owncloud/ocis/ocis-pkg/config"
"github.com/owncloud/ocis/ocis-pkg/log"
@@ -20,6 +22,7 @@ func Execute() error {
Version: version.String,
Usage: "ownCloud Infinite Scale Stack",
Compiled: version.Compiled(),
Flags: flagset.RootWithConfig(cfg),
Before: func(c *cli.Context) error {
return ParseConfig(c, cfg)
},