Skip to content

Commit 071abb8

Browse files
committed
Suppress 'signal process started' message when nginx config is restored (related to issue #4995)
1 parent bc646d1 commit 071abb8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

acme.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3425,7 +3425,7 @@ _restoreNginx() {
34253425
done
34263426

34273427
_info "Reloading nginx"
3428-
if ! nginx -s reload >/dev/null; then
3428+
if ! nginx -s reload >/dev/null 2>&1; then
34293429
_err "An error occurred while reloading nginx, please open an issue on $PROJECT."
34303430
return 1
34313431
fi

0 commit comments

Comments
 (0)