0
0
Fork 0
mirror of https://github.com/go-gitea/gitea synced 2024-06-30 08:18:52 +02:00
gitea/cmd/cert_stub.go

29 lines
670 B
Go
Raw Normal View History

2014-10-07 13:02:53 +02:00
// +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.
package cmd
import (
"fmt"
"os"
2014-10-07 13:02:53 +02:00
"github.com/codegangsta/cli"
)
var CmdCert = cli.Command{
2015-12-16 01:42:20 +01:00
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 13:02:53 +02:00
}
func runCert(ctx *cli.Context) error {
2014-10-07 13:02:53 +02:00
fmt.Println("Command cert not available, please use build tags 'cert' to rebuild.")
os.Exit(1)
return nil
2014-10-07 13:02:53 +02:00
}