mirror of https://github.com/CISOfy/lynis.git
Removed errant semicolon which broke uploads
Resolves below error: ./lynis: 25: ./include/data_upload: Syntax error: ";" unexpected
This commit is contained in:
parent
2b95019b62
commit
34c88e0c05
|
@ -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}"
|
||||
|
|
Loading…
Reference in New Issue