mirror of
https://github.com/beetbox/beets.git
synced 2025-12-28 11:32:30 +01:00
Added --no-incremental option to beet import.
This commit is contained in:
parent
43cebabcb6
commit
2a76a60794
1 changed files with 2 additions and 0 deletions
|
|
@ -732,6 +732,8 @@ import_cmd.parser.add_option('-L', '--library', dest='library',
|
|||
action='store_true', help='retag items matching a query')
|
||||
import_cmd.parser.add_option('-i', '--incremental', dest='incremental',
|
||||
action='store_true', help='skip already-imported directories')
|
||||
import_cmd.parser.add_option('--no-incremental', dest='incremental',
|
||||
action='store_false', help='do not skip already-imported directories')
|
||||
def import_func(lib, config, opts, args):
|
||||
copy = opts.copy if opts.copy is not None else \
|
||||
ui.config_val(config, 'beets', 'import_copy',
|
||||
|
|
|
|||
Loading…
Reference in a new issue