We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f32cd85 commit 9b3ebd8Copy full SHA for 9b3ebd8
1 file changed
http-tests/admin/packages/install-uninstall-package-stylesheet.sh
@@ -72,7 +72,11 @@ fi
72
echo "DEBUG: Verifying master stylesheet no longer includes package..." >&2
73
master_xsl=$(curl -k -s "$END_USER_BASE_URL"static/xsl/layout.xsl)
74
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
+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
80
if echo "$master_xsl" | grep -q "com/linkeddatahub/packages/skos/layout.xsl"; then
81
echo "ERROR: Master stylesheet still includes package after uninstall!" >&2
82
exit 1
0 commit comments