Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ output/
.vscode/
/out/

# Generated site content
# Generated/duplicate site content
site/content/resources/mastodon.csv
site/content/members.adoc
site/content/stats.adoc
site/content/podcasts.adoc
site/content/resources/java-champions.yml
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
clean:
rm site/content/resources/mastodon.csv site/content/members.adoc site/content/stats.adoc
rm -f site/content/resources/mastodon.csv site/content/members.adoc site/content/stats.adoc site/content/podcasts.adoc site/content/resources/java-champions.yml

prerequisites-check:
ifeq (, $(shell which jbang))
Expand All @@ -11,7 +11,8 @@ endif
@echo 'JBang and JBake installations found.'

build: prerequisites-check
cd resources; jbang site.java ../java-champions.yml ../site/content/
cd resources; jbang site.java ../ ../site/content/
cp java-champions.yml site/content/resources
cd site; jbake --bake

server: build
Expand Down