1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-13 07:13:00 +03:00

-z instead of -e for non-files

This commit is contained in:
Sahal Ansari 2014-03-31 07:43:37 +00:00
parent 8508f7c594
commit 358357db1e

View File

@ -20,10 +20,10 @@ tzone="+09:00"
entry="* See: http://www.softether.org/5-download/history"
# are you a debian maintainer?
if [ ! -e "$DEBFULLNAME" ]; then
if [ -z "$DEBFULLNAME" ]; then
DEBFULLNAME="John Q. Sample"
fi
if [ ! -e "$DEBEMAIL" ]; then
if [ -z "$DEBEMAIL" ]; then
DEBEMAIL="tamade@example.org"
fi
@ -61,6 +61,5 @@ echo
echo " ""$entry"
echo
echo " --"" ""$DEBFULLNAME"" <""$DEBEMAIL""> ""$date"
echo
exit 0