diff options
author | Alan Pearce | 2024-05-13 21:43:43 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-13 21:43:43 +0200 |
commit | 2722f24af87f437ed9fcb8cc743ad1784141fd3a (patch) | |
tree | 2d89f7d2e0a94988d4ef8dfcfbf8131a91d3c574 | |
parent | 55efc5bec9703a299de5aac89006ed85600445fc (diff) | |
download | searchix-2722f24af87f437ed9fcb8cc743ad1784141fd3a.tar.lz searchix-2722f24af87f437ed9fcb8cc743ad1784141fd3a.tar.zst searchix-2722f24af87f437ed9fcb8cc743ad1784141fd3a.zip |
build: fix wrong arguments in justfile
-rw-r--r-- | justfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/justfile b/justfile index 18c0acf..8883577 100644 --- a/justfile +++ b/justfile @@ -21,10 +21,10 @@ precommit: nix-build -A pre-commit-check dev: - watchexec -e go -r wgo run -exit ./serve/ --live --config-file config.toml + watchexec -e go -r wgo run -exit ./serve/ --live --config config.toml index: - wgo run -exit ./import/ --config-file config.toml + wgo run -exit ./import/ --config config.toml reindex: - wgo run -exit ./import/ --config-file config.toml --replace + wgo run -exit ./import/ --config config.toml --replace |