From 0f8d05adebfe323908be487187d9afe6aaa2df36 Mon Sep 17 00:00:00 2001 From: liquidev Date: Sat, 23 Nov 2024 21:56:33 +0100 Subject: [PATCH] remove `--commits-only` from Justfile --- admin/daemon.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/daemon.bash b/admin/daemon.bash index 5c6ce28..35c44aa 100755 --- a/admin/daemon.bash +++ b/admin/daemon.bash @@ -13,7 +13,7 @@ reload() { # This just kind of assumes regeneration doesn't take too long. cargo build --release kill "$treehouse_pid" - cargo run --release -- serve --port 8082 --commits-only > "$build_log" 2>&1 & + cargo run --release -- serve --port 8082 > "$build_log" 2>&1 & treehouse_pid="$!" }