Merge pull request #130 from rhyven/patch-2

Removed errant semicolon which broke uploads
This commit is contained in:
Michael Boelen 2016-03-08 08:07:34 +01:00
commit 607978a89d

View File

@ -22,7 +22,7 @@
PROGRAM_VERSION="101" PROGRAM_VERSION="101"
# Data upload destination # 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/" UPLOAD_URL="https://${UPLOAD_SERVER}/upload/"
LogText "Upload server: ${UPLOAD_SERVER}" LogText "Upload server: ${UPLOAD_SERVER}"
LogText "URL to upload to: ${UPLOAD_URL}" LogText "URL to upload to: ${UPLOAD_URL}"