mirror of
https://github.com/ksyasuda/aniwrapper.git
synced 2024-10-28 04:44:11 -07:00
simplify logic in find_media function
This commit is contained in:
parent
d7bd5899b5
commit
8fb570b003
10
ani-cli
10
ani-cli
@ -408,13 +408,9 @@ find_media() {
|
||||
case "$selection" in
|
||||
Back | ../)
|
||||
dotdotslash="${inp%/*}"
|
||||
if [ -z "$dotdotslash" ]; then
|
||||
insert_history "directory" "/"
|
||||
find_media "/"
|
||||
else
|
||||
insert_history "directory" "$dotdotslash"
|
||||
find_media "$dotdotslash"
|
||||
fi
|
||||
[ -z "$dotdotslash" ] && dotdotslash="/"
|
||||
insert_history "directory" "$dotdotslash"
|
||||
find_media "$dotdotslash"
|
||||
;;
|
||||
Quit)
|
||||
return 1
|
||||
|
Loading…
Reference in New Issue
Block a user