()
| 58 | } |
| 59 | |
| 60 | func GetCanonicalString() string { |
| 61 | ret := fmt.Sprintf("%s-%s", Release, CommitHash) |
| 62 | if Release == "b000" && CommitHash == "unknown" { |
| 63 | ret += "-" + getExecutableHash() |
| 64 | } |
| 65 | return ret |
| 66 | } |
| 67 | |
| 68 | type Command struct { |
| 69 | ffcli.Command |
no test coverage detected