1 Star 0 Fork 0

陈文甲 / fabric

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
version.go 1.39 KB
一键复制 编辑 原始数据 按行查看 历史
/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package version
import (
"fmt"
"runtime"
"github.com/hyperledger/fabric/common/metadata"
"github.com/spf13/cobra"
)
// Program name
const ProgramName = "peer"
// Cmd returns the Cobra Command for Version
func Cmd() *cobra.Command {
return cobraCommand
}
var cobraCommand = &cobra.Command{
Use: "version",
Short: "Print fabric peer version.",
Long: `Print current version of the fabric peer server.`,
RunE: func(cmd *cobra.Command, args []string) error {
if len(args) != 0 {
return fmt.Errorf("trailing args detected")
}
// Parsing of the command line is done so silence cmd usage
cmd.SilenceUsage = true
fmt.Print(GetInfo())
return nil
},
}
// GetInfo returns version information for the peer
func GetInfo() string {
if metadata.Version == "" {
metadata.Version = "development build"
}
ccinfo := fmt.Sprintf(" Base Image Version: %s\n"+
" Base Docker Namespace: %s\n"+
" Base Docker Label: %s\n"+
" Docker Namespace: %s\n",
metadata.BaseVersion, metadata.BaseDockerNamespace,
metadata.BaseDockerLabel, metadata.DockerNamespace)
return fmt.Sprintf("%s:\n Version: %s\n Commit SHA: %s\n Go version: %s\n"+
" OS/Arch: %s\n"+
" Chaincode:\n %s\n",
ProgramName, metadata.Version, metadata.CommitSHA, runtime.Version(),
fmt.Sprintf("%s/%s", runtime.GOOS, runtime.GOARCH), ccinfo)
}
1
https://gitee.com/venjia/fabric.git
git@gitee.com:venjia/fabric.git
venjia
fabric
fabric
v1.4.12

搜索帮助

53164aa7 5694891 3bd8fe86 5694891