Skip to content
This repository has been archived by the owner on Nov 22, 2022. It is now read-only.

Commit

Permalink
Fixed wrong version display
Browse files Browse the repository at this point in the history
  • Loading branch information
profclems committed Jul 27, 2020
1 parent bbf5a3c commit a41dfc1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ cmd/glab/config/.env
cmd/glab/bin
cmd/glab/bin/*
bin
config
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build:
go build -o bin/glab cmd/glab/main.go

run:
go run cmd/glab/main.go
go run cmd/glab/main.go $(var)

push:
git push origin $(git branch | sed -n -e 's/^\* \(.*\)/\1/p')
Expand Down
2 changes: 1 addition & 1 deletion glab.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
)

func Version(_ map[string]string, _ map[int]string) {
version := "v1.5.0"
version := "v1.5.1"
fmt.Println("GLab version", version)
fmt.Println("https://github.com/profclems/glab")
fmt.Println()
Expand Down

0 comments on commit a41dfc1

Please sign in to comment.