2
0
zrcadlo https://github.com/therootcompany/go-gitver.git synchronizováno 2026-03-18 08:07:59 +00:00

shorter example string

Tento commit je obsažen v:
AJ ONeal 2020-07-17 02:55:32 +00:00
rodič d5c2342f76
revize a45a154eaf

Zobrazit soubor

@ -28,7 +28,7 @@ var (
func main() { func main() {
if (len(os.Args) > 1 && "version" === os.Args[1]) { if (len(os.Args) > 1 && "version" === os.Args[1]) {
fmt.Println("My version is", GitVersion, "created at", GitTimestamp) fmt.Printf("Foobar v%s (%s)", GitVersion, GitTimestamp)
} }
// ... // ...
} }