You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
major=$(strip $(shell awk -F ':' '/major/ {print $$2;}' cfg.yml))
|
|
|
|
minor=$(strip $(shell awk -F ':' '/minor/ {print $$2;}' cfg.yml))
|
|
|
|
patch=$(strip $(shell awk -F ':' '/patch/ {print $$2;}' cfg.yml))
|
|
|
|
version=v$(major).$(minor).$(patch)
|
|
|
|
vinfo=$(strip $(shell awk -F '$(version)' '/$(version)/ {print $$2;}' vuf.md))
|
|
|
|
|
|
|
|
|
|
|
|
version:
|
|
|
|
@echo $(version) $(vinfo)
|
|
|
|
|
|
|
|
addtag:
|
|
|
|
ifeq ($(vinfo),)
|
|
|
|
@echo please add version info in vuf.md
|
|
|
|
else
|
|
|
|
@git tag -m '$(vinfo)' $(version)
|
|
|
|
@git push origin $(version)
|
|
|
|
endif
|
|
|
|
|
|
|
|
dropTag:
|
|
|
|
@git tag -d $(version)
|
|
|
|
@git push origin :refs/tags/$(version)
|
|
|
|
|
|
|
|
run:
|
|
|
|
go run *.go -d
|
|
|
|
|
|
|
|
.PHONY:build
|
|
|
|
build:
|
|
|
|
@GOOS=linux GOARCH=amd64 go build -o ./build/OneAuth
|
|
|
|
|
|
|
|
syncDB:
|
|
|
|
@scp -P 19529 oa.db root@alco.host:/root/
|
|
|
|
|
|
|
|
buildweb:
|
|
|
|
@cd oaweb && yarn build
|
|
|
|
@rm -rf ./oab/dist/*
|
|
|
|
@mv ./oaweb/dist/spa/* ./oab/dist/
|