1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-09 13:47:11 +02:00

use fallback file VERSION

This commit is contained in:
Jesse Duffield 2018-08-09 12:25:32 +10:00
parent 273eb6244b
commit 6e8abbcdda

15
main.go
View File

@ -4,6 +4,7 @@ import (
"errors"
"flag"
"fmt"
"io/ioutil"
"log"
"os"
"os/exec"
@ -69,10 +70,24 @@ func navigateToRepoRootDirectory() {
}
}
// when building the binary, `version` is set as a compile-time variable, along
// with `date` and `commit`. If this program has been opened directly via go,
// we will populate the `version` with VERSION in the lazygit root directory
func fallbackVersion() string {
byteVersion, err := ioutil.ReadFile("VERSION")
if err != nil {
log.Panicln(err.Error())
}
return string(byteVersion)
}
func main() {
startTime = time.Now()
devLog("\n\n\n\n\n\n\n\n\n\n")
flag.Parse()
if version == "unversioned" {
version = fallbackVersion()
}
if *versionFlag {
fmt.Printf("commit=%s, build date=%s, version=%s", commit, date, version)
os.Exit(0)