2021-09-24 00:44:09 +08:00
|
|
|
//go:build !cert
|
2014-10-07 07:02:53 -04:00
|
|
|
|
|
|
|
|
// 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.
|
2021-09-24 00:44:09 +08:00
|
|
|
|
2014-10-07 07:02:53 -04:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"fmt"
|
2014-11-29 21:52:59 -06:00
|
|
|
"os"
|
2014-10-07 07:02:53 -04:00
|
|
|
|
2016-08-30 13:57:58 +02:00
|
|
|
"github.com/urfave/cli"
|
2014-10-07 07:02:53 -04:00
|
|
|
)
|
|
|
|
|
|
2017-02-23 19:59:39 -05:00
|
|
|
var Cert = cli.Command{
|
2015-12-15 19:42:20 -05: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 07:02:53 -04:00
|
|
|
}
|
|
|
|
|
|
2022-03-06 15:46:21 +08:00
|
|
|
func runCert(_ *cli.Context) error {
|
2014-10-07 07:02:53 -04:00
|
|
|
fmt.Println("Command cert not available, please use build tags 'cert' to rebuild.")
|
2014-11-29 21:52:59 -06:00
|
|
|
os.Exit(1)
|
2016-05-12 14:32:28 -04:00
|
|
|
|
|
|
|
|
return nil
|
2014-10-07 07:02:53 -04:00
|
|
|
}
|