diff options
author | Andy Scherzinger <info@andy-scherzinger.de> | 2025-04-15 19:09:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-15 19:09:27 +0200 |
commit | f81b54a370ac564e48fb8d61108784cb5d94d796 (patch) | |
tree | f460aa1ea631faac8ec86e2c072d5ae106f67a68 | |
parent | cd6e5ababb97cd69e742076fcba315d29c422667 (diff) | |
parent | 63ed670458a1991d1506c1101962f4f864a62c10 (diff) | |
download | nextcloud-server-f81b54a370ac564e48fb8d61108784cb5d94d796.tar.gz nextcloud-server-f81b54a370ac564e48fb8d61108784cb5d94d796.zip |
Merge pull request #52212 from nextcloud/fix/improve-error-output-of-sso-test
chore: Output error content when test smb-kerberos-sso is failing
-rwxr-xr-x | apps/files_external/tests/sso-setup/test-sso-smb.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/files_external/tests/sso-setup/test-sso-smb.sh b/apps/files_external/tests/sso-setup/test-sso-smb.sh index d019ce728cd..46955ae0d3c 100755 --- a/apps/files_external/tests/sso-setup/test-sso-smb.sh +++ b/apps/files_external/tests/sso-setup/test-sso-smb.sh @@ -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 |