Skip to content

Commit c658327

Browse files
Bump external-content/cookie from bdb0908 to cca2fc1 (#303)
* Bump external-content/cookie from `bdb0908` to `cca2fc1` Bumps [external-content/cookie](https://github.com/scientific-python/cookie) from `bdb0908` to `cca2fc1`. - [Release notes](https://github.com/scientific-python/cookie/releases) - [Commits](scientific-python/cookie@bdb0908...cca2fc1) --- updated-dependencies: - dependency-name: external-content/cookie dependency-version: cca2fc140544e14283f913aef92d4580434d243b dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Modify Makefile to include cookie_web_prepare Added cookie_web_prepare target and updated cookie dependencies. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
1 parent 5c6270d commit c658327

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
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)