diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..a85b791 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,27 @@ +## Jira Link: + +## Description + +Describe problems, if any, clearly and concisely. +Describe any changes that have been made in this pull request. + +## Type of Change + +- [ ] Bugfix +- [ ] Enhancement +- [ ] New feature +- [ ] Breaking change (fix or feature that would cause the existing functionality to not work as expected) + +## How Has This Been Tested? + +- [ ] New unit tests added. +- [ ] Manual tested. + +## Checklist: + +- [ ] Using Branch Name Convention + - `feature/JIRA-ID-SHORT-DESCRIPTION` if has a JIRA ticket + - `enhancement/SHORT-DESCRIPTION` if has/has no JIRA ticket and contain enhancement + - `hotfix/SHORT-DESCRIPTION` if the change doesn't need to be tested (urgent) +- [ ] I have commented on my code, particularly in hard-to-understand areas. +- [ ] I have made the documentation for the corresponding changes. \ No newline at end of file diff --git a/scripts/build-debian.bash b/scripts/build-debian.bash index 24ebb92..b99f185 100644 --- a/scripts/build-debian.bash +++ b/scripts/build-debian.bash @@ -35,5 +35,5 @@ do # Move build result to the output directory mkdir -p $ROOT_DIR/$OUTPUT_DIR && mv ../*.deb $ROOT_DIR/$OUTPUT_DIR && - mv ../*.ddeb $ROOT_DIR/$OUTPUT_DIR || true + (mv ../*.ddeb $ROOT_DIR/$OUTPUT_DIR || true) done