mirror of
https://github.com/thorsten-gehrig/alexa-remote-control.git
synced 2024-11-22 16:59:03 +01:00
Merge pull request #2 from michael1/patch-1
added error handling for failed login
This commit is contained in:
commit
2b4dd9564f
@ -623,11 +623,20 @@ check_status
|
|||||||
if [ $? -eq 0 ] ; then
|
if [ $? -eq 0 ] ; then
|
||||||
echo "cookie expired, logging in again ..."
|
echo "cookie expired, logging in again ..."
|
||||||
log_in
|
log_in
|
||||||
|
check_status
|
||||||
|
if [ $? -eq 0 ] ; then
|
||||||
|
echo "log in failed, aborting"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ ! -f ${DEVLIST} ] ; then
|
if [ ! -f ${DEVLIST} ] ; then
|
||||||
echo "device list do not exist. downloading ..."
|
echo "device list do not exist. downloading ..."
|
||||||
get_devlist
|
get_devlist
|
||||||
|
if [ ! -f ${DEVLIST} ] ; then
|
||||||
|
echo "failed to download device list, aborting"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ -n "$COMMAND" -o -n "$QUEUE" ] ; then
|
if [ -n "$COMMAND" -o -n "$QUEUE" ] ; then
|
||||||
|
Loading…
Reference in New Issue
Block a user