Merge pull request #5029 from scruel/patch-2
Prevent leaving blank lines in config file after cleared keys.pull/5285/head
commit
8635d89cc8
2
acme.sh
2
acme.sh
|
@ -2361,7 +2361,7 @@ _clear_conf() {
|
||||||
_sdkey="$2"
|
_sdkey="$2"
|
||||||
if [ "$_c_c_f" ]; then
|
if [ "$_c_c_f" ]; then
|
||||||
_conf_data="$(cat "$_c_c_f")"
|
_conf_data="$(cat "$_c_c_f")"
|
||||||
echo "$_conf_data" | sed "s/^$_sdkey *=.*$//" >"$_c_c_f"
|
echo "$_conf_data" | sed "/^$_sdkey *=.*$/d" >"$_c_c_f"
|
||||||
else
|
else
|
||||||
_err "Config file is empty, cannot clear"
|
_err "Config file is empty, cannot clear"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue