Remove quotes so tilde is expanded (#3978)

This commit is contained in:
Brad Warren
2017-01-05 20:27:39 -05:00
committed by GitHub
parent dc16013abe
commit 1125b4924d
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ set -e # Work even if somebody does "sh thisscript.sh".
# Note: you can set XDG_DATA_HOME or VENV_PATH before running this script,
# if you want to change where the virtual environment will be installed
if [ -z "$XDG_DATA_HOME" ]; then
XDG_DATA_HOME="~/.local/share"
XDG_DATA_HOME=~/.local/share
fi
VENV_NAME="letsencrypt"
if [ -z "$VENV_PATH" ]; then
@@ -16,7 +16,7 @@ set -e # Work even if somebody does "sh thisscript.sh".
# Note: you can set XDG_DATA_HOME or VENV_PATH before running this script,
# if you want to change where the virtual environment will be installed
if [ -z "$XDG_DATA_HOME" ]; then
XDG_DATA_HOME="~/.local/share"
XDG_DATA_HOME=~/.local/share
fi
VENV_NAME="letsencrypt"
if [ -z "$VENV_PATH" ]; then