From 4278551c28c5bcc87ed0754b67413b57d5c17e72 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 24 Jan 2025 12:55:06 +0100 Subject: build: allow passing flags to just {reindex,update} --- justfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/justfile b/justfile index dfa7bec..3d16fbc 100644 --- a/justfile +++ b/justfile @@ -52,8 +52,8 @@ release: clean-workdir changelog update-nix-package-version dev: modd -reindex: - wgo run --exit ./cmd/searchix-web --config config.toml --replace --dev +reindex *flags: + wgo run --exit ./cmd/searchix-web --config config.toml --replace --dev {{ flags }} -update: - wgo run --exit ./cmd/searchix-web --config config.toml --update --dev +update *flags: + wgo run --exit ./cmd/searchix-web --config config.toml --update --dev {{ flags }} -- cgit 1.4.1