From 2e76a4c6a70cd0c24dbfdd3fc9c689a53dea9064 Mon Sep 17 00:00:00 2001 From: Asai Neko Date: Tue, 20 Jan 2026 15:42:34 +0800 Subject: [PATCH] Remove clean for building client and backend Signed-off-by: Asai Neko --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index c6d81c8..a0732b4 100644 --- a/justfile +++ b/justfile @@ -21,10 +21,10 @@ clean: client: cd {{ client_dir }} && {{ pnpm_cmd }} run dev -build-client: clean +build-client: cd {{ client_dir }} && {{ pnpm_cmd }} run build --outDir {{ join(output_dir, "static") }} -build-back: clean +build-back: {{ go_cmd }} build -o {{ exec_path }}{{ if os() == "windows" { ".exe" } else { "" } }} {{ server_enrty }} run-back: