'[ -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:
parent
936c4f66d6
commit
871e95dd4d
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue