Update modules.py

This commit is contained in:
Anthony Wang 2020-06-15 18:41:32 -05:00
parent a7be2b29b2
commit fbae8d9033

View file

@ -673,7 +673,7 @@ def build(temp_directory, deepsea_version, command, auto_build):
if command == common.Command.SDSetup:
# Only show prompts when it's not an auto build.
if not auto_build:
print(f'Downloading {module["name"]}...')
# print(f'Downloading {module["name"]}...')
# Make sure module directory is created.
module_directory = temp_directory.joinpath(
@ -697,7 +697,7 @@ def build(temp_directory, deepsea_version, command, auto_build):
# Running a Kosmos Build
else:
# Download the module.
print(f'Downloading {module["name"]}...')
# print(f'Downloading {module["name"]}...')
download = globals()[module['download_function_name']]
version = download(module, temp_directory,
deepsea_version, True)