We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 441989a commit 13e885bCopy full SHA for 13e885b
1 file changed
tests/e2e/35_workspace.sh
@@ -93,7 +93,8 @@ echo "=== Building from workspace root ==="
93
echo "workspace build: ok"
94
95
# ── Verify the binary runs correctly ────────────────────
96
-BIN=$(find target -type f -name hello | head -1)
+# 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)
98
test -n "$BIN" || { echo "FAIL: hello binary not found"; exit 1; }
99
OUT=$("$BIN" 2>&1)
100
echo "output: $OUT"
0 commit comments