From e16f8e8f9b6058fb7143108d13e9ce59cdae0667 Mon Sep 17 00:00:00 2001 From: Jack Amadeo Date: Wed, 13 May 2026 12:05:31 -0400 Subject: [PATCH] Replace ensure-local-goose (#8532) Signed-off-by: Douwe Osinga Co-authored-by: Douwe Osinga --- ui/goose2/justfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ui/goose2/justfile b/ui/goose2/justfile index afcbf4fe10..3a7a727b44 100644 --- a/ui/goose2/justfile +++ b/ui/goose2/justfile @@ -79,7 +79,7 @@ test-e2e-all: # ── Run ────────────────────────────────────────────────────── # Start the desktop app in dev mode -dev: setup +dev: build-core #!/usr/bin/env bash set -euo pipefail @@ -137,7 +137,7 @@ dev: setup pnpm tauri dev --features app-test-driver --config src-tauri/tauri.dev.conf.json "${EXTRA_CONFIG_ARGS[@]}" # Start the desktop app with dev config -dev-debug: setup +dev-debug: build-core #!/usr/bin/env bash set -euo pipefail @@ -281,3 +281,6 @@ clean: cd src-tauri && cargo clean rm -rf dist rm -rf node_modules + +build-core: + cargo build -p goose-cli --bin goose