forked from organicmaps/organicmaps
[tools] fail with warning when OMIM_PATH doesn't exist
otherwise it fails later when trying to access `{OMIM_PATH}/data`, with the unhelpful message "AssertError: USER_RESOURCE_PATH is not None" Signed-off-by: Harry Bond <me@hbond.xyz>
This commit is contained in:
parent
ada5327b4a
commit
fde252347f
1 changed files with 2 additions and 0 deletions
|
@ -212,6 +212,8 @@ def init(default_settings_path: AnyStr):
|
|||
)
|
||||
NODE_STORAGE = cfg.get_opt("Generator tool", "NODE_STORAGE", NODE_STORAGE)
|
||||
|
||||
assert os.path.exists(OMIM_PATH) is True, f"Can't find OMIM_PATH (set to {OMIM_PATH})"
|
||||
|
||||
if not os.path.exists(USER_RESOURCE_PATH):
|
||||
from data_files import find_data_files
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue