From 5a191e79afacb4459d9767c3330ad6ecf3eacc9a Mon Sep 17 00:00:00 2001 From: Cotes Chung <11371340+cotes2020@users.noreply.github.com> Date: Wed, 28 Dec 2022 01:10:27 +0800 Subject: [PATCH] chore: remove extension from tools --- .github/CONTRIBUTING.md | 2 +- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/ci.yml | 2 +- tools/{init.sh => init} | 0 tools/{release.sh => release} | 0 tools/{run.sh => run} | 0 tools/{test.sh => test} | 0 7 files changed, 3 insertions(+), 3 deletions(-) rename tools/{init.sh => init} (100%) rename tools/{release.sh => release} (100%) rename tools/{run.sh => run} (100%) rename tools/{test.sh => test} (100%) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 9ac13dc..ef81bb0 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -33,7 +33,7 @@ During JavaScript development, real-time debugging can be performed through the Firstly, start a Jekyll server: ```console -$ bash tools/run.sh +$ bash tools/run ``` And then open a new terminal tab and run: diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 5187ecc..d26834f 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -22,7 +22,7 @@ Please select the desired item checkbox and change it to "[x]", then delete opti Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration --> -- [ ] I have run `bash ./tools/test.sh` (at the root of the project) locally and passed +- [ ] I have run `bash ./tools/test` (at the root of the project) locally and passed - [ ] I have tested this feature in the browser ### Test Configuration diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79d04c5..a927d91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,4 +35,4 @@ jobs: bundler-cache: true - name: Test Site - run: bash tools/test.sh + run: bash tools/test diff --git a/tools/init.sh b/tools/init similarity index 100% rename from tools/init.sh rename to tools/init diff --git a/tools/release.sh b/tools/release similarity index 100% rename from tools/release.sh rename to tools/release diff --git a/tools/run.sh b/tools/run similarity index 100% rename from tools/run.sh rename to tools/run diff --git a/tools/test.sh b/tools/test similarity index 100% rename from tools/test.sh rename to tools/test