Skip to content

Commit 05b6555

Browse files
committed
fix test: Use explicit shell for cat command
1 parent b7af7fd commit 05b6555

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/run-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ echo ""
281281
echo "--- Superpowers (Agentic Skills Framework) ---"
282282

283283
echo "opencode.json content:"
284-
docker exec "$CONTAINER" cat ~/.config/opencode/opencode.json 2>/dev/null || echo "FILE_NOT_FOUND"
284+
docker exec "$CONTAINER" sh -c 'cat /home/devuser/.config/opencode/opencode.json' 2>/dev/null || echo "FILE_NOT_FOUND"
285285
echo "---"
286286

287287
if docker exec "$CONTAINER" jq -r '.plugin | join(" ")' ~/.config/opencode/opencode.json 2>/dev/null | grep -q "superpowers"; then

0 commit comments

Comments
 (0)