Merge pull request #686 from willglynn/cert_stub_exit_code

Cert command stub should return a non-zero exit code
This commit is contained in:
无闻 2014-11-30 01:38:35 -05:00
commit 1591a37ad5
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,7 @@ package cmd
import (
"fmt"
"os"
"time"
"github.com/codegangsta/cli"
@ -31,4 +32,5 @@ Outputs to 'cert.pem' and 'key.pem' and will overwrite existing files.`,
func runCert(ctx *cli.Context) {
fmt.Println("Command cert not available, please use build tags 'cert' to rebuild.")
os.Exit(1)
}