Skip to content

Commit baf20f0

Browse files
authored
Modify Makefile to include cookie_web_prepare
Added cookie_web_prepare target and updated cookie dependencies.
1 parent 4c2464a commit baf20f0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: help prepare cookie cookie_ruby_deps external html serve clean
1+
.PHONY: help prepare cookie cookie_ruby_deps cookie_web_prepare external html serve clean
22
.DEFAULT_GOAL := help
33

44
# Add help text after each target name starting with '\#\#'
@@ -14,7 +14,11 @@ cookie_ruby_deps:
1414
(cd external-content/cookie && \
1515
bundle install)
1616

17-
cookie: cookie_ruby_deps
17+
cookie_web_prepare:
18+
(cd external-content/cookie && \
19+
./helpers/fetch_repo_review_app.sh)
20+
21+
cookie: cookie_ruby_deps cookie_web_prepare
1822
(cd external-content/cookie && \
1923
JEKYLL_ENV=production bundle exec jekyll build --destination ../../public/development --baseurl "/development/")
2024

0 commit comments

Comments
 (0)