Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jblukach committed May 28, 2023
1 parent bb9dcb6 commit 53d703b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mmi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
__gtfo__ = GTFO = pathlib.Path.joinpath(pathlib.Path.home(), 'gtfo.bloom')
__mmi__ = MMI = pathlib.Path.joinpath(pathlib.Path.home(), 'mmi.bloom')

__version__ = VERSION = '2023.5.28'
__version__ = VERSION = '2023.5.29'
9 changes: 7 additions & 2 deletions mmi/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,5 +292,10 @@ def main():
if args.download:
download()
else:
with concurrent.futures.ThreadPoolExecutor() as executor:
executor.submit(start, args.skip)
if __mmi__.is_file() == False:
print('MISSING: '+str(__mmi__))
elif __gtfo__.is_file() == False:
print('MISSING: '+str(__gtfo__))
else:
with concurrent.futures.ThreadPoolExecutor() as executor:
executor.submit(start, args.skip)

0 comments on commit 53d703b

Please sign in to comment.