From 34c88e0c05e1ba49420916ae7bc694b7c10ef3d1 Mon Sep 17 00:00:00 2001 From: Eric Light Date: Fri, 4 Mar 2016 15:06:32 +1300 Subject: [PATCH] Removed errant semicolon which broke uploads Resolves below error: ./lynis: 25: ./include/data_upload: Syntax error: ";" unexpected --- include/data_upload | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/data_upload b/include/data_upload index e162a936..96179a27 100644 --- a/include/data_upload +++ b/include/data_upload @@ -22,7 +22,7 @@ PROGRAM_VERSION="101" # Data upload destination - if [ "${UPLOAD_SERVER}" = "" ]; then; UPLOAD_SERVER="portal.cisofy.com"; fi + if [ "${UPLOAD_SERVER}" = "" ]; then UPLOAD_SERVER="portal.cisofy.com"; fi UPLOAD_URL="https://${UPLOAD_SERVER}/upload/" LogText "Upload server: ${UPLOAD_SERVER}" LogText "URL to upload to: ${UPLOAD_URL}"