Browse Source

Show error message if starting new getssl after upgrade fails

pull/622/head
Tim Kimber 5 years ago
parent
commit
6ce5114b6b
No known key found for this signature in database GPG Key ID: 3E1804964E76BD18
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      getssl

+ 3
- 1
getssl View File

@ -771,7 +771,9 @@ check_getssl_upgrade() { # check if a more recent version of code is available a
getssl_versions=("${getssl_versions[@]:1}")
done
fi
eval "$ORIGCMD"
if ! eval "$ORIGCMD"; then
error_exit "Running upgraded getssl failed"
fi
graceful_exit
else
info ""


Loading…
Cancel
Save