Browse Source

Had the -U logic the wrong way around...

pull/107/head
Alexander Skwar 9 years ago
parent
commit
504c82cd0d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      getssl

+ 1
- 1
getssl View File

@ -196,7 +196,7 @@ check_challenge_completion() { # checks with the ACME server if our challenge is
}
check_getssl_upgrade() { # check if a more recent version of code is available available
[[ $_NO_UPGRADE_CHECK -eq 0 ]] && return
[[ $_NO_UPGRADE_CHECK -eq 1 ]] && return
latestcode=$(curl --silent "$CODE_LOCATION")
errcode=$?


Loading…
Cancel
Save