From 2490514c1b4193cfb063d270ceaa27d8058a5129 Mon Sep 17 00:00:00 2001 From: Keith Irwin Date: Sun, 6 Nov 2022 18:36:25 -0700 Subject: [PATCH] Don't fail if it succeeded --- back/lib/dashboard/ssl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/back/lib/dashboard/ssl b/back/lib/dashboard/ssl index 4ec2f97..f8ab335 100755 --- a/back/lib/dashboard/ssl +++ b/back/lib/dashboard/ssl @@ -69,7 +69,7 @@ if ! [ -f "${path}" ]; then fi # Try to return it to the user -if ! <"${path}" "${LIB_DIR}/http_res" 200; then +if <"${path}" "${LIB_DIR}/http_res" 200; then printf 'Sent SSL file "%s" to %s\n' "${path}" "${username}" >>"${LOGFILE}" else printf 'ERROR! Failed to return file: "%s"\n' "${path}" | tee -a "${LOGFILE}" | "${LIB_DIR}/http_res" 500