summaryrefslogtreecommitdiffstats
path: root/cmd/platform/license.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/platform/license.go')
-rw-r--r--cmd/platform/license.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/cmd/platform/license.go b/cmd/platform/license.go
index dc9c8f3dc..73efe9137 100644
--- a/cmd/platform/license.go
+++ b/cmd/platform/license.go
@@ -6,7 +6,6 @@ import (
"errors"
"io/ioutil"
- "github.com/mattermost/mattermost-server/app"
"github.com/spf13/cobra"
)
@@ -28,7 +27,8 @@ func init() {
}
func uploadLicenseCmdF(cmd *cobra.Command, args []string) error {
- if err := initDBCommandContextCobra(cmd); err != nil {
+ a, err := initDBCommandContextCobra(cmd)
+ if err != nil {
return err
}
@@ -37,12 +37,11 @@ func uploadLicenseCmdF(cmd *cobra.Command, args []string) error {
}
var fileBytes []byte
- var err error
if fileBytes, err = ioutil.ReadFile(args[0]); err != nil {
return err
}
- if _, err := app.Global().SaveLicense(fileBytes); err != nil {
+ if _, err := a.SaveLicense(fileBytes); err != nil {
return err
}