From 7623fc245ce7a71170e0f873fe02383268dfbb91 Mon Sep 17 00:00:00 2001 From: Huaqi Fang <578567190@qq.com> Date: Fri, 29 Dec 2023 19:30:25 +0800 Subject: [PATCH] fix wrong script AttributeError: 'Namespace' object has no attribute 'nsdk' Signed-off-by: Huaqi Fang <578567190@qq.com> --- .github/prepare_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/prepare_tools.py b/.github/prepare_tools.py index deda118..0f3b095 100644 --- a/.github/prepare_tools.py +++ b/.github/prepare_tools.py @@ -152,6 +152,6 @@ def install_pio_packages(nsdk_url="https://github.com/Nuclei-Software/nuclei-sdk else: prepare_tools() - install_pio_packages(args.nsdk) + install_pio_packages(args.sdk) print("Setup completed successfully!")