'[ -n "" ] && command' chain returns non-zero code if -n test fails, and the whole script exits non-zero. This may confuse encompassing script

This commit is contained in:
Alexey Zakharenkov 2019-07-05 18:05:53 +03:00
parent 936c4f66d6
commit 871e95dd4d

View file

@ -93,5 +93,7 @@ rm "$VALIDATION"
if [ -n "${SERVER-}" ]; then
scp -q ${SERVER_KEY+-i "$SERVER_KEY"} "$HTML_DIR"/* "$SERVER"
[ -n "${REMOVE_HTML-}" ] && rm -r "$HTML_DIR"
if [ -n "${REMOVE_HTML-}" ]; then
rm -r "$HTML_DIR"
fi
fi