From 78fd68b28580163536d64d7d43f6ea15dcb22914 Mon Sep 17 00:00:00 2001 From: Brian Hicks Date: Tue, 2 Apr 2019 15:38:10 -0500 Subject: [PATCH] move scripts to scripts with parity with the monolith --- Makefile | 4 ++-- {scripts => script}/check-exposed.py | 0 {scripts => script}/serve.sh | 0 {scripts => script}/watch.sh | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename {scripts => script}/check-exposed.py (100%) rename {scripts => script}/serve.sh (100%) rename {scripts => script}/watch.sh (92%) 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