Browse Source

Made linter happy in cmd folder

master
Thomas Boerger 8 years ago
parent
commit
5b5af7daee
No known key found for this signature in database GPG Key ID: 5A388F55283960B6
7 changed files with 14 additions and 5 deletions
  1. +1
    -0
      cmd/admin.go
  2. +2
    -1
      cmd/cert.go
  3. +2
    -0
      cmd/cert_stub.go
  4. +1
    -0
      cmd/dump.go
  5. +4
    -3
      cmd/serve.go
  6. +1
    -0
      cmd/update.go
  7. +3
    -1
      cmd/web.go

+ 1
- 0
cmd/admin.go View File

@@ -14,6 +14,7 @@ import (
)

var (
// CmdAdmin represents the available admin sub-command.
CmdAdmin = cli.Command{
Name: "admin",
Usage: "Preform admin operations on command line",


+ 2
- 1
cmd/cert.go View File

@@ -25,10 +25,11 @@ import (
"github.com/urfave/cli"
)

// CmdCert represents the available cert sub-command.
var CmdCert = cli.Command{
Name: "cert",
Usage: "Generate self-signed certificate",
Description: `Generate a self-signed X.509 certificate for a TLS server.
Description: `Generate a self-signed X.509 certificate for a TLS server.
Outputs to 'cert.pem' and 'key.pem' and will overwrite existing files.`,
Action: runCert,
Flags: []cli.Flag{


+ 2
- 0
cmd/cert_stub.go View File

@@ -4,6 +4,7 @@
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package cmd

import (
@@ -13,6 +14,7 @@ import (
"github.com/urfave/cli"
)

// CmdCert represents the available cert sub-command.
var CmdCert = cli.Command{
Name: "cert",
Usage: "Generate self-signed certificate",


+ 1
- 0
cmd/dump.go View File

@@ -20,6 +20,7 @@ import (
"github.com/go-gitea/gitea/modules/setting"
)

// CmdDump represents the available dump sub-command.
var CmdDump = cli.Command{
Name: "dump",
Usage: "Dump Gogs files and database",


+ 4
- 3
cmd/serve.go View File

@@ -26,9 +26,10 @@ import (
)

const (
_ACCESS_DENIED_MESSAGE = "Repository does not exist or you do not have access"
accessDenied = "Repository does not exist or you do not have access"
)

// CmdServ represents the available serv sub-command.
var CmdServ = cli.Command{
Name: "serv",
Usage: "This command should only be called by SSH shell",
@@ -179,7 +180,7 @@ func runServ(c *cli.Context) error {
repo, err := models.GetRepositoryByName(repoUser.ID, reponame)
if err != nil {
if models.IsErrRepoNotExist(err) {
fail(_ACCESS_DENIED_MESSAGE, "Repository does not exist: %s/%s", repoUser.Name, reponame)
fail(accessDenied, "Repository does not exist: %s/%s", repoUser.Name, reponame)
}
fail("Internal error", "Failed to get repository: %v", err)
}
@@ -241,7 +242,7 @@ func runServ(c *cli.Context) error {
if err != nil {
fail("Internal error", "Fail to check access: %v", err)
} else if mode < requestedMode {
clientMessage := _ACCESS_DENIED_MESSAGE
clientMessage := accessDenied
if mode >= models.ACCESS_MODE_READ {
clientMessage = "You do not have sufficient authorization for this action"
}


+ 1
- 0
cmd/update.go View File

@@ -14,6 +14,7 @@ import (
"github.com/go-gitea/gitea/modules/setting"
)

// CmdUpdate represents the available update sub-command.
var CmdUpdate = cli.Command{
Name: "update",
Usage: "This command should only be called by Git hook",


+ 3
- 1
cmd/web.go View File

@@ -48,6 +48,7 @@ import (
"github.com/go-gitea/gitea/routers/user"
)

// CmdWeb represents the available web sub-command.
var CmdWeb = cli.Command{
Name: "web",
Usage: "Start Gogs web server",
@@ -60,6 +61,7 @@ and it takes care of all the other things for you`,
},
}

// VerChecker is a listing of required dependency versions.
type VerChecker struct {
ImportPath string
Version func() string
@@ -99,7 +101,7 @@ func checkVersion() {
for _, c := range checkers {
if !version.Compare(c.Version(), c.Expected, ">=") {
log.Fatal(4, `Dependency outdated!
Package '%s' current version (%s) is below requirement (%s),
Package '%s' current version (%s) is below requirement (%s),
please use following command to update this package and recompile Gogs:
go get -u %[1]s`, c.ImportPath, c.Version(), c.Expected)
}


Loading…
Cancel
Save