Skip to content

Commit 13e885b

Browse files
committed
fix(test): look for workspace binary in member's target dir
1 parent 441989a commit 13e885b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/e2e/35_workspace.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ echo "=== Building from workspace root ==="
9393
echo "workspace build: ok"
9494

9595
# ── Verify the binary runs correctly ────────────────────
96-
BIN=$(find target -type f -name hello | head -1)
96+
# target/ is created in the member dir (apps/hello/target/), not workspace root.
97+
BIN=$(find apps/hello/target -type f -name hello | head -1)
9798
test -n "$BIN" || { echo "FAIL: hello binary not found"; exit 1; }
9899
OUT=$("$BIN" 2>&1)
99100
echo "output: $OUT"

0 commit comments

Comments
 (0)