summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-11-22 15:50:25 -0700
committermo khan <mo.khan@gmail.com>2020-11-22 15:50:25 -0700
commit1e2ad4bc178a5e91e30c3b1386e4067ebf11a9d1 (patch)
tree0f0a85a8d546f7cb8b53a6f18cf700874eaac138
parent95c963db85b3d281206b629344296ae9679bbc0b (diff)
chore: rename script to bin
-rw-r--r--.github/workflows/test.yml2
-rwxr-xr-xbin/server (renamed from script/server)2
-rwxr-xr-xbin/setup (renamed from script/setup)0
-rwxr-xr-xbin/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
diff --git a/script/setup b/bin/setup
index 9ae57de..9ae57de 100755
--- a/script/setup
+++ b/bin/setup
diff --git a/script/test b/bin/test
index cf5470f..6d21364 100755
--- a/script/test
+++ b/bin/test
@@ -4,5 +4,5 @@ set -e
cd "$(dirname "$0")/.."
-./script/setup
+./bin/setup
ruby -Ilib:test -r test_helper test/**/*.rb