diff options
-rw-r--r-- | justfile | 8 |
1 files 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 }} |