mirror of
https://github.com/Luzifer/vault-otp-ui.git
synced 2024-11-08 16:20:06 +00:00
17 lines
460 B
Makefile
17 lines
460 B
Makefile
default: build
|
|
|
|
ci:
|
|
curl -sSLo golang.sh https://raw.githubusercontent.com/Luzifer/github-publish/master/golang.sh
|
|
bash golang.sh
|
|
|
|
build: generate
|
|
go build -ldflags "-X main.version=$(shell git describe --tags || git rev-parse --short HEAD || echo dev)"
|
|
|
|
install: generate
|
|
go install -ldflags "-X main.version=$(shell git describe --tags || git rev-parse --short HEAD || echo dev)"
|
|
|
|
generate: build_js
|
|
go generate
|
|
|
|
build_js:
|
|
coffee -c application.coffee
|