|
while [[ $DBSTATUS -ne 0 ]] && [[ $i -lt 60 ]] && [[ $ERRCODE -ne 0 ]]; do |
should be while [[ $DBSTATUS -ne 0 || $ERRCODE -ne 0 ]] && [[ $i -lt 60 ]]; do
|
if [ $DBSTATUS -ne 0 ] OR [ $ERRCODE -ne 0 ]; then |
have syntax errors
should be if [[ $DBSTATUS -ne 0 || $ERRCODE -ne 0 ]]; then
mssql-docker/linux/preview/examples/mssql-customize/configure-db.sh
Line 12 in 80e2a51
should be
while [[ $DBSTATUS -ne 0 || $ERRCODE -ne 0 ]] && [[ $i -lt 60 ]]; domssql-docker/linux/preview/examples/mssql-customize/configure-db.sh
Line 19 in 80e2a51
should be
if [[ $DBSTATUS -ne 0 || $ERRCODE -ne 0 ]]; then