chore: ensure bash is used to generate code (#6577)
author罗泽轩 <spacewanderlzx@gmail.com>
Mon, 19 Apr 2021 21:30:55 +0000 (05:30 +0800)
committerGitHub <noreply@github.com>
Mon, 19 Apr 2021 21:30:55 +0000 (14:30 -0700)
In some platforms, like Ubuntu, `sh` is linked to `dash` but not `bash`.

.github/PULL_REQUEST_TEMPLATE.md

index 4cbb292..949e76f 100644 (file)
@@ -6,7 +6,7 @@ Make sure you include the names of the affected language(s) in your PR title.
 This helps us get the correct maintainers to look at your issue.
 
 If you make changes to any of the code generators, be sure to run
-`cd tests && sh generate_code.sh` (or equivalent .bat) and include the generated
+`cd tests && bash generate_code.sh` (or equivalent .bat) and include the generated
 code changes in the PR. This allows us to better see the effect of the PR.
 
 If your PR includes C++ code, please adhere to the Google C++ Style Guide,