summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author罗泽轩 <spacewanderlzx@gmail.com>2021-04-20 05:30:55 +0800
committerGitHub <noreply@github.com>2021-04-19 14:30:55 -0700
commit84714b109b9719648ee47fa67bb468c07fca7ed0 (patch)
tree1206f35a37b5a6fc86a12847b2e73b6677fb3f80
parent1045d7dd44c3876d73c12fb5780edca50ae39a4c (diff)
downloadflatbuffers-84714b109b9719648ee47fa67bb468c07fca7ed0.tar.gz
flatbuffers-84714b109b9719648ee47fa67bb468c07fca7ed0.tar.bz2
flatbuffers-84714b109b9719648ee47fa67bb468c07fca7ed0.zip
chore: ensure bash is used to generate code (#6577)
In some platforms, like Ubuntu, `sh` is linked to `dash` but not `bash`.
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 4cbb292f..949e76ff 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -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,