File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- import ' ../../Justfile'
2-
31# Derive a stable port from the working directory so the same worktree
42# always gets the same port.
53vite_port := ` python3 -c " import hashlib,os; h=int(hashlib.sha256(os.getcwd().encode()).hexdigest(),16); print(10000 + h % 55000)" `
@@ -76,7 +74,7 @@ test-e2e-all:
7674# ── Run ──────────────────────────────────────────────────────
7775
7876# Start the desktop app in dev mode
79- dev : build-debug
77+ dev : build-core
8078 #!/usr/bin/env bash
8179 set -euo pipefail
8280
@@ -110,7 +108,7 @@ dev: build-debug
110108 pnpm tauri dev --features app-test-driver --config " $TAURI_CONFIG"
111109
112110# Start the desktop app with dev config
113- dev-debug : build-debug
111+ dev-debug : build-core
114112 #!/usr/bin/env bash
115113 set -euo pipefail
116114
@@ -180,3 +178,6 @@ clean:
180178cherry-pick-goose2 * ARGS :
181179 git fetch goose2
182180 git format-patch -1 {{ ARGS}} --stdout | git am --directory=ui/ goose2
181+
182+ build-core :
183+ cargo build -p goose-cli --bin goose
You can’t perform that action at this time.
0 commit comments