fix: real fix
This commit is contained in:
@@ -77,9 +77,9 @@ def main():
|
||||
source_dir = download_and_unpack(nginx_url)
|
||||
module_source_dirs = []
|
||||
for module in config["modules"]:
|
||||
print(f"Downloading module: {module['name']}")
|
||||
module_source_dir = download_and_unpack(module["url"])
|
||||
print(f"Module '{module['name']}' downloaded successfully.")
|
||||
print(f"Downloading module: {module}")
|
||||
module_source_dir = download_and_unpack(module)
|
||||
print(f"Module '{module}' downloaded successfully.")
|
||||
module_source_dirs.append(module_source_dir)
|
||||
# Configure and build modules
|
||||
args = [f"--add-dynamic-module=../{dir}" for dir in module_source_dirs]
|
||||
|
||||
Reference in New Issue
Block a user