2
2
mirror of https://github.com/Hilbis/Hilbish synced 2025-04-21 21:13:22 +00:00

Compare commits

..

No commits in common. "da6a4aa70f41ac8e445000fb5a7c2effab20f26a" and "edd45e4182f80ad7ab4afd227fb69c120dda18f4" have entirely different histories.

2 changed files with 3 additions and 6 deletions

View File

@ -6,9 +6,6 @@ LIBDIR ?= $(PREFIX)/share/hilbish
build:
@go build
build-dev:
@go build -ldflags "-X main.version=$(git describe --tags)"
install:
@install -v -d "$(DESTDIR)$(BINDIR)/" && install -m 0755 -v hilbish "$(DESTDIR)$(BINDIR)/hilbish"
@mkdir -p "$(DESTDIR)$(LIBDIR)"
@ -28,4 +25,4 @@ clean:
all: build install
.PHONY: install uninstall build build-dev clean
.PHONY: install uninstall build clean

View File

@ -18,7 +18,7 @@ import (
"golang.org/x/term"
)
var version = "v0.4.1-dev.9"
const version = "0.4.1-dev.8"
var (
l *lua.LState
@ -76,7 +76,7 @@ func main() {
}
if *verflag {
fmt.Printf("Hilbish %s\n", version)
fmt.Printf("Hilbish v%s\n", version)
os.Exit(0)
}