From 6773934fa7aa25e07003726f04eb4e93ef7df4de Mon Sep 17 00:00:00 2001 From: IceCodeNew <32576256+IceCodeNew@users.noreply.github.com> Date: Sat, 19 Sep 2020 21:53:49 +0800 Subject: [PATCH] fix shell warning --- install-release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-release.sh b/install-release.sh index 8bfb899..a57f55f 100644 --- a/install-release.sh +++ b/install-release.sh @@ -14,11 +14,11 @@ # You can set this variable whatever you want in shell session right before running this script by issuing: # export DAT_PATH='/usr/local/share/v2ray' -${DAT_PATH:=/usr/local/share/v2ray} +DAT_PATH=${DAT_PATH:-/usr/local/share/v2ray} # You can set this variable whatever you want in shell session right before running this script by issuing: # export JSON_PATH='/usr/local/etc/v2ray' -${JSON_PATH:=/usr/local/etc/v2ray} +JSON_PATH=${JSON_PATH:-/usr/local/etc/v2ray} # Set this variable only if you are starting v2ray with multiple configuration files: # export JSONS_PATH='/usr/local/etc/v2ray'