Merge pull request #52212 from nextcloud/fix/improve-error-output-of-sso-test

chore: Output error content when test smb-kerberos-sso is failing
This commit is contained in:
Andy Scherzinger 2025-04-15 19:09:27 +02:00 committed by GitHub
commit f81b54a370
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -16,6 +16,7 @@ if [[ "$LOGIN_CONTENT" =~ "Location: http://localhost/success" ]]; then
echo "✔️"
else
echo "❌"
echo "$CONTENT"
exit 1
fi
echo -n "Getting test file: "
@ -26,5 +27,6 @@ if [[ $CONTENT == "testfile" ]]; then
echo "✔️"
else
echo "❌"
echo "$CONTENT"
exit 1
fi