Replaced all [ p -o q ] with [ p ] || [ q ] and all [ p -a q ] with [ p ] && [ q ]

This commit is contained in:
Jon-William Lewis
2015-09-19 18:23:47 -05:00
committed by Jon-William Lewis
parent 6e7f4c3e95
commit 337a1bf3a3
6 changed files with 32 additions and 32 deletions

View File

@@ -32,7 +32,7 @@ if [ -n "$ERR_NO_KEY" ]; then
echo " Warning: No encryption key was provided. Encryption disabled."
fi
if [ -n "$ERR_NO_SSL" -o -n "$ERR_NO_KEY" ]; then
if [ -n "$ERR_NO_SSL" ] || [ -n "$ERR_NO_KEY" ]; then
pause
fi