Skip to content

Commit 9b3ebd8

Browse files
committed
DEbug output
1 parent f32cd85 commit 9b3ebd8

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

http-tests/admin/packages/install-uninstall-package-stylesheet.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,11 @@ fi
7272
echo "DEBUG: Verifying master stylesheet no longer includes package..." >&2
7373
master_xsl=$(curl -k -s "$END_USER_BASE_URL"static/xsl/layout.xsl)
7474
echo "DEBUG: Master stylesheet content (checking for package):" >&2
75-
echo "$master_xsl" | grep "com/linkeddatahub/packages" >&2 || echo "DEBUG: No package imports found" >&2
75+
if echo "$master_xsl" | grep "com/linkeddatahub/packages"; then
76+
echo "DEBUG: Found package imports in master stylesheet" >&2
77+
else
78+
echo "DEBUG: No package imports found" >&2
79+
fi
7680
if echo "$master_xsl" | grep -q "com/linkeddatahub/packages/skos/layout.xsl"; then
7781
echo "ERROR: Master stylesheet still includes package after uninstall!" >&2
7882
exit 1

0 commit comments

Comments
 (0)