Skip to content

Commit 760e99e

Browse files
committed
don't import
1 parent 2e0aa82 commit 760e99e

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

ui/goose2/justfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import '../../Justfile'
2-
31
# Derive a stable port from the working directory so the same worktree
42
# always gets the same port.
53
vite_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:
180178
cherry-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

0 commit comments

Comments
 (0)