mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 13:07:09 +01:00
Library path is printed if update cannot find it
This commit is contained in:
parent
72fcceac99
commit
baf4953ac0
1 changed files with 1 additions and 0 deletions
|
|
@ -1188,6 +1188,7 @@ def update_func(lib, opts, args):
|
|||
# Verify that the library folder exists to prevent accidental wipes.
|
||||
if not os.path.exists(lib.directory):
|
||||
ui.print_("Library path is unavailable or does not exist.")
|
||||
ui.print_(lib.directory)
|
||||
if not ui.input_yn("Are you sure you want to continue (y/n)?", True):
|
||||
return
|
||||
update_items(lib, decargs(args), opts.album, ui.should_move(opts.move),
|
||||
|
|
|
|||
Loading…
Reference in a new issue