diff --git a/Makefile b/Makefile index 9296e47b..36457a9a 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ test: node_modules .PHONY: checks checks: - scripts/check-exposed.py + script/check-exposed.py .PHONY: diff diff: node_modules @@ -61,7 +61,7 @@ public/%: styleguide-app/% .PHONY: serve-public serve-public: public - ./scripts/watch.sh + ./script/watch.sh # plumbing diff --git a/scripts/check-exposed.py b/script/check-exposed.py similarity index 100% rename from scripts/check-exposed.py rename to script/check-exposed.py diff --git a/scripts/serve.sh b/script/serve.sh similarity index 100% rename from scripts/serve.sh rename to script/serve.sh diff --git a/scripts/watch.sh b/script/watch.sh similarity index 92% rename from scripts/watch.sh rename to script/watch.sh index d4ac5425..2e7711c8 100755 --- a/scripts/watch.sh +++ b/script/watch.sh @@ -2,7 +2,7 @@ set -euo pipefail # start a web server -./scripts/serve.sh public & +./script/serve.sh public & SERVER_PID=$! # start a watcher