diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2025-04-15 16:26:24 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2025-04-15 16:54:56 +0200 |
commit | 63ed670458a1991d1506c1101962f4f864a62c10 (patch) | |
tree | d9e5962d733921342551870549fdfa8c2fcd012e /apps | |
parent | b2a187d29611c4e2d730187be9bcc58874dd96c1 (diff) | |
download | nextcloud-server-fix/improve-error-output-of-sso-test.tar.gz nextcloud-server-fix/improve-error-output-of-sso-test.zip |
chore: Output error content when test smb-kerberos-sso is failingfix/improve-error-output-of-sso-test
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps')
-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 |