break out of loop
This commit is contained in:
parent
5460671a09
commit
1a555c7ee4
|
@ -946,8 +946,8 @@ function restore_data_from_storage {
|
|||
|
||||
sel=$?
|
||||
case $sel in
|
||||
1) return;;
|
||||
255) return;;
|
||||
1) break;;
|
||||
255) break;;
|
||||
esac
|
||||
app_name=$(cat $data)
|
||||
|
||||
|
@ -957,7 +957,6 @@ function restore_data_from_storage {
|
|||
fi
|
||||
|
||||
clear
|
||||
echo $"Selected $app_name"
|
||||
|
||||
# Restore all
|
||||
if [[ "$app_name" == "$AllStr" ]]; then
|
||||
|
|
Loading…
Reference in New Issue