From bddae0751e0dc4efed26f14b57b7873f558f774f Mon Sep 17 00:00:00 2001 From: Jingwen Peng Date: Sun, 4 Dec 2016 00:16:45 +0800 Subject: [PATCH] makefile: Fix help message of target "all" Signed-off-by: Jingwen Peng --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 47cbd10..0c0fa9c 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ LINT_IGNORE_CONFLICT="service\/.*\.go:.+(type name will be used as)" help: @echo "Please use \`make \` where is one of" - @echo " all to check, build and test this SDK" + @echo " all to check, build, test and release this SDK" @echo " check to vet and lint the SDK" @echo " test to run service test" @echo " build to build the SDK"