mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-24 13:58:12 -05:00
Bumps [github.com/gookit/config/v2](https://github.com/gookit/config) from 2.1.8 to 2.2.2. - [Release notes](https://github.com/gookit/config/releases) - [Commits](https://github.com/gookit/config/compare/v2.1.8...v2.2.2) --- updated-dependencies: - dependency-name: github.com/gookit/config/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
1.3 KiB
Makefile
41 lines
1.3 KiB
Makefile
# link https://github.com/humbug/box/blob/master/Makefile
|
||
#SHELL = /bin/sh
|
||
.DEFAULT_GOAL := help
|
||
# 每行命令之前必须有一个tab键。如果想用其他键,可以用内置变量.RECIPEPREFIX 声明
|
||
# mac 下这条声明 没起作用 !!
|
||
#.RECIPEPREFIX = >
|
||
.PHONY: all usage help clean
|
||
|
||
# 需要注意的是,每行命令在一个单独的shell中执行。这些Shell之间没有继承关系。
|
||
# - 解决办法是将两行命令写在一行,中间用分号分隔。
|
||
# - 或者在换行符前加反斜杠转义 \
|
||
|
||
# 接收命令行传入参数 make COMMAND tag=v2.0.4
|
||
# TAG=$(tag)
|
||
|
||
##There some make command for the project
|
||
##
|
||
|
||
help:
|
||
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' | sed -e 's/: / /'
|
||
|
||
##Available Commands:
|
||
|
||
readme: ## Generate or update README file by ./internal/gendoc
|
||
readme:
|
||
go run ./internal/gendoc -o README.md
|
||
go run ./internal/gendoc -o README.zh-CN.md -l zh-CN
|
||
|
||
readme-c: ## Generate or update README file and commit change to git
|
||
readme-c: readme
|
||
git add README.* internal
|
||
git commit -m ":memo: doc: update and re-generate README docs"
|
||
|
||
csfix: ## Fix code style for all files by go fmt
|
||
csfix:
|
||
go fmt ./...
|
||
|
||
csdiff: ## Display code style error files by gofmt
|
||
csdiff:
|
||
gofmt -l ./
|