Remove clean for building client and backend

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2026-01-20 15:42:34 +08:00
parent 5c540db325
commit 2e76a4c6a7

View File

@@ -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: