mirror of
https://github.com/crunchy-labs/crunchy-cli.git
synced 2026-01-21 04:02:00 -06:00
Add warning message the --skip-existing-method has no effect without --skip-existing (#418)
This commit is contained in:
parent
817963af4f
commit
590242712b
1 changed files with 4 additions and 0 deletions
|
|
@ -234,6 +234,10 @@ impl Execute for Archive {
|
||||||
bail!("`--include-chapters` can only be used if `--merge` is set to 'audio' or 'sync'")
|
bail!("`--include-chapters` can only be used if `--merge` is set to 'audio' or 'sync'")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if !self.skip_existing_method.is_empty() && !self.skip_existing {
|
||||||
|
warn!("`--skip-existing-method` has no effect if `--skip-existing` is not set")
|
||||||
|
}
|
||||||
|
|
||||||
self.audio = all_locale_in_locales(self.audio.clone());
|
self.audio = all_locale_in_locales(self.audio.clone());
|
||||||
self.subtitle = all_locale_in_locales(self.subtitle.clone());
|
self.subtitle = all_locale_in_locales(self.subtitle.clone());
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue