chore: ensure bash is used to generate code (#6577)

In some platforms, like Ubuntu, `sh` is linked to `dash` but not `bash`.
This commit is contained in:
罗泽轩 2021-04-20 05:30:55 +08:00 committed by GitHub
parent 1045d7dd44
commit 84714b109b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View 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. 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 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. 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, If your PR includes C++ code, please adhere to the Google C++ Style Guide,