From 3390c14b05ecb2ed2da90e5c089ffdf274f24524 Mon Sep 17 00:00:00 2001 From: x86dev Date: Fri, 7 Jul 2017 14:03:46 +0200 Subject: [PATCH] setup-ttrss.sh: Fixed TRSS_PORT tweaking if not set. --- root/srv/setup-ttrss.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/srv/setup-ttrss.sh b/root/srv/setup-ttrss.sh index e0548a1..ad2e378 100755 --- a/root/srv/setup-ttrss.sh +++ b/root/srv/setup-ttrss.sh @@ -65,7 +65,7 @@ setup_ttrss() fi # Tweak TTRSS_PORT, if defined. - if [ -n ${TTRSS_PORT} ]; then + if [ -n "$TTRSS_PORT" ]; then TTRSS_PORT=:${TTRSS_PORT} fi