bench-forgejo/cmd/cert_stub.go

31 lines
716 B
Go
Raw Normal View History

2014-10-07 16:32:53 +05:30
// +build !cert
// Copyright 2009 The Go Authors. All rights reserved.
// 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.
2016-11-04 17:12:18 +05:30
2014-10-07 16:32:53 +05:30
package cmd
import (
"fmt"
"os"
2014-10-07 16:32:53 +05:30
2016-08-30 17:27:58 +05:30
"github.com/urfave/cli"
2014-10-07 16:32:53 +05:30
)
2016-11-04 17:12:18 +05:30
// CmdCert represents the available cert sub-command.
2014-10-07 16:32:53 +05:30
var CmdCert = cli.Command{
2015-12-16 06:12:20 +05:30
Name: "cert",
Usage: "Generate self-signed certificate",
Description: `Please use build tags "cert" to rebuild Gogs in order to have this ability`,
Action: runCert,
2014-10-07 16:32:53 +05:30
}
func runCert(*cli.Context) error {
2014-10-07 16:32:53 +05:30
fmt.Println("Command cert not available, please use build tags 'cert' to rebuild.")
os.Exit(1)
return nil
2014-10-07 16:32:53 +05:30
}