diff --git a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md index 66d4332..a7104da 100644 --- a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md +++ b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md @@ -7,7 +7,7 @@ ### 描述(做了什么,变更了什么) -### 测试用例(新增、改动、可能影响的功能) +### 影响到的模块 diff --git a/conf/public_conf.go b/conf/public_conf.go index 56153da..ff0aadd 100644 --- a/conf/public_conf.go +++ b/conf/public_conf.go @@ -20,9 +20,9 @@ func init() { case nil: case viper.ConfigFileNotFoundError: formatPath := []string{linuxPath, devPath, devPath} - log.Fatalf("The profile could not be read, read path:%v", formatPath) + log.Fatalf("the profile could not be read, read path:%v", formatPath) default: - log.Fatalf("The resolution of the profile failed, err: %v", err) + log.Fatalf("the resolution of the profile failed, err: %v", err) } } diff --git a/makefile b/makefile index b4525c1..add950c 100644 --- a/makefile +++ b/makefile @@ -11,4 +11,8 @@ build: .PHONY: install install: - @make build \ No newline at end of file + @make build + +.PHONY: dev +dev: + @./bin/storage storage \ No newline at end of file