aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2025-04-15 16:26:24 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2025-04-15 16:54:56 +0200
commit63ed670458a1991d1506c1101962f4f864a62c10 (patch)
treed9e5962d733921342551870549fdfa8c2fcd012e /apps/files_external
parentb2a187d29611c4e2d730187be9bcc58874dd96c1 (diff)
downloadnextcloud-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/files_external')
-rwxr-xr-xapps/files_external/tests/sso-setup/test-sso-smb.sh2
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