From 28b0b8fccd1946571f39d298af058a07125501a4 Mon Sep 17 00:00:00 2001 From: "A.Unger" Date: Fri, 5 Nov 2021 12:10:37 +0100 Subject: [PATCH] fix ocis root flagset --- ocis/pkg/command/root.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ocis/pkg/command/root.go b/ocis/pkg/command/root.go index a004ec77a..cd2b49eb0 100644 --- a/ocis/pkg/command/root.go +++ b/ocis/pkg/command/root.go @@ -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) },