No empty strings
This commit is contained in:
parent
205cd80c01
commit
dde8e0fcf3
|
@ -1040,11 +1040,13 @@ function restore_data_from_storage {
|
|||
do
|
||||
app_index=$[choice-2]
|
||||
app_name=${app_list[app_index]}
|
||||
$restore_command "${app_name}"
|
||||
if [ ! "$?" = "0" ]; then
|
||||
dialog --title $"Restore apps from USB" \
|
||||
--msgbox $"Restore of ${app_name} failed with code $?" 6 40
|
||||
return
|
||||
if [ ${#app_name} -gt 0 ]; then
|
||||
$restore_command "${app_name}"
|
||||
if [ ! "$?" = "0" ]; then
|
||||
dialog --title $"Restore apps from USB" \
|
||||
--msgbox $"Restore of ${app_name} failed with code $?" 6 40
|
||||
return
|
||||
fi
|
||||
fi
|
||||
ctr=$((ctr + 1))
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue