mirror of
https://github.com/lahfir/agent-desktop.git
synced 2026-08-04 13:16:06 +00:00
Freezes the working tree as a fixed baseline: static gates green (1551 lib tests, clippy -D warnings, fmt, release 0.4.7), live-verified E1/E2 fixes, notification/harness work pending e2e acceptance. Known-open: hover fixture churn to back out, 3 e2e failures (hover oracle, AE6 sheet, sheet cancel), NT1-NT4 unproven.
8 lines
276 B
Bash
Executable file
8 lines
276 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
here="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
: "${AGENT_DESKTOP_E2E_BINARY:?AGENT_DESKTOP_E2E_BINARY is required}"
|
|
|
|
export AGENT_DESKTOP_E2E_INHERIT_LEASE=1
|
|
exec python3 "$here/json_tool.py" exec "$AGENT_DESKTOP_E2E_BINARY" "$@"
|