diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 10:56:06 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-05 10:56:06 +0200 |
commit | 2a49db8b5c2946555e7fa3a26193814ee711fb71 (patch) | |
tree | 3ffade57adc7a72c15282d1228fdc6005aaa1a8c /makefile | |
parent | 1643801e434c2c9bb09353998856210a46056f3b (diff) |
add fallback (no client js) search
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -8,11 +8,12 @@ JEKYLL_BUILD_ARGS += --destination $(WEBROOT) # Gemfile.lock is used as a proxy for checking if the required gems are # installed +GEMS = Gemfile.lock -build: Gemfile.lock +build: $(GEMS) bundle exec jekyll build $(JEKYLL_BUILD_ARGS) -Gemfile.lock: Gemfile +$(GEMS): Gemfile bundle install --quiet clean: |