mirror of
https://github.com/certbot/certbot.git
synced 2026-06-09 00:32:12 -04:00
Unquote heredoc terminators.
Quoting them causes them to not be recognized sometimes. (Perhaps it's when they're not within backticks?)
This commit is contained in:
parent
86203c85df
commit
fe77da2f7f
1 changed files with 2 additions and 2 deletions
4
booty.sh
4
booty.sh
|
|
@ -18,7 +18,7 @@ if [ "$1" != "--_skip-to-install" ]; then
|
|||
# copy of letsencrypt-auto or returns non-zero. There is no $ interpolation
|
||||
# due to quotes on heredoc delimiters.
|
||||
set +e
|
||||
TEMP_DIR=`$PYTHON - <<"UNLIKELY_EOF"
|
||||
TEMP_DIR=`$PYTHON - << "UNLIKELY_EOF"
|
||||
|
||||
from distutils.version import LooseVersion
|
||||
from json import loads
|
||||
|
|
@ -140,7 +140,7 @@ def main():
|
|||
|
||||
|
||||
exit(main())
|
||||
"UNLIKELY_EOF"`
|
||||
UNLIKELY_EOF`
|
||||
DOWNLOAD_STATUS=$?
|
||||
set -e
|
||||
if [ "$DOWNLOAD_STATUS" = 0 ]; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue