From 2edf6bee3464dcda0b003ae37ad1b9e633e75d42 Mon Sep 17 00:00:00 2001 From: bol-van Date: Thu, 29 May 2025 19:05:50 +0300 Subject: [PATCH] install_easy: minor fix --- common/installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/installer.sh b/common/installer.sh index cec2284c..030bb4e2 100644 --- a/common/installer.sh +++ b/common/installer.sh @@ -839,13 +839,13 @@ dry_run_tpws_() { local TPWS="$ZAPRET_BASE/tpws/tpws" echo verifying tpws options - "$TPWS" --dry-run --user=$WS_USER "$@" + "$TPWS" --dry-run ${WS_USER:+--user=$WS_USER} "$@" } dry_run_nfqws_() { local NFQWS="$ZAPRET_BASE/nfq/nfqws" echo verifying nfqws options - "$NFQWS" --dry-run --user=$WS_USER "$@" + "$NFQWS" --dry-run ${WS_USER:+--user=$WS_USER} "$@" } dry_run_tpws() {