diff options
| -rw-r--r-- | .github/workflows/test.yml | 2 | ||||
| -rwxr-xr-x | bin/server (renamed from script/server) | 2 | ||||
| -rwxr-xr-x | bin/setup (renamed from script/setup) | 0 | ||||
| -rwxr-xr-x | bin/test (renamed from script/test) | 2 |
4 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8af1637..7e38fa2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,4 +13,4 @@ jobs: with: ruby-version: ${{ matrix.ruby }} - name: test - run: ./script/test + run: ./bin/test diff --git a/script/server b/bin/server index ff6c111..7e401e0 100755 --- a/script/server +++ b/bin/server @@ -6,5 +6,5 @@ cd "$(dirname "$0")/.." RACK_ENV="${RACK_ENV:-development}" export RACK_ENV -./script/setup +./bin/setup ruby -Ilib config.ru @@ -4,5 +4,5 @@ set -e cd "$(dirname "$0")/.." -./script/setup +./bin/setup ruby -Ilib:test -r test_helper test/**/*.rb |
