mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-05-11 20:36:03 +02:00
Add lazygit --v
version
* Recover Rev and Build Date from build args * Moved `debuggingPointer` and `versionFlag` to `var()` * Print version and exit in case of `-v` or `--v`
This commit is contained in:
parent
6cb0a14f33
commit
4d9d2b134f
1 changed files with 10 additions and 3 deletions
13
main.go
13
main.go
|
@ -14,6 +14,10 @@ import (
|
|||
var (
|
||||
startTime time.Time
|
||||
debugging bool
|
||||
Rev string
|
||||
builddate string
|
||||
debuggingPointer = flag.Bool("debug", false, "a boolean")
|
||||
versionFlag = flag.Bool("v", false, "Print the current version")
|
||||
)
|
||||
|
||||
func homeDirectory() string {
|
||||
|
@ -58,11 +62,14 @@ func navigateToRepoRootDirectory() {
|
|||
}
|
||||
|
||||
func main() {
|
||||
debuggingPointer := flag.Bool("debug", false, "a boolean")
|
||||
flag.Parse()
|
||||
startTime = time.Now()
|
||||
debugging = *debuggingPointer
|
||||
devLog("\n\n\n\n\n\n\n\n\n\n")
|
||||
startTime = time.Now()
|
||||
flag.Parse()
|
||||
if *versionFlag {
|
||||
fmt.Printf("rev=%s, build date=%s", Rev, builddate)
|
||||
os.Exit(0)
|
||||
}
|
||||
verifyInGitRepo()
|
||||
navigateToRepoRootDirectory()
|
||||
run()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue