Removed errant semicolon which broke uploads

Resolves below error:
   ./lynis: 25: ./include/data_upload: Syntax error: ";" unexpected
This commit is contained in:
Eric Light 2016-03-04 15:06:32 +13:00
parent 2b95019b62
commit 34c88e0c05
1 changed files with 1 additions and 1 deletions

View File

@ -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}"