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