Browse Source

Merge pull request #9319 from gyuho/skip

scripts/genproto: run "protodoc" by default
Gyuho Lee 7 years ago
parent
commit
aab8b5e456
1 changed files with 3 additions and 3 deletions
  1. 3 3
      scripts/genproto.sh

+ 3 - 3
scripts/genproto.sh

@@ -114,10 +114,10 @@ schwag -input=Documentation/dev-guide/apispec/swagger/rpc.swagger.json
 # install protodoc
 # install protodoc
 # go get -v -u github.com/coreos/protodoc
 # go get -v -u github.com/coreos/protodoc
 #
 #
-# by default, do not run this option.
-# only run when './scripts/genproto.sh -g'
+# run './scripts/genproto.sh --skip-protodoc'
+# to skip protodoc generation
 #
 #
-if [ "$1" = "-g" ]; then
+if [ "$1" != "--skip-protodoc" ]; then
 	echo "protodoc is auto-generating grpc API reference documentation..."
 	echo "protodoc is auto-generating grpc API reference documentation..."
 	go get -v -u github.com/coreos/protodoc
 	go get -v -u github.com/coreos/protodoc
 	SHA_PROTODOC="4372ee725035a208404e2d5465ba921469decc32"
 	SHA_PROTODOC="4372ee725035a208404e2d5465ba921469decc32"