fix: scanner now handles real guarddog v2 JSON format
This commit is contained in:
@@ -39,9 +39,12 @@ def download_asset(download_url: str, dest_dir: str) -> str | None:
|
||||
try:
|
||||
result = subprocess.run(
|
||||
[
|
||||
"curl", "-sfSL",
|
||||
"-u", f"{config.nexus_username}:{config.nexus_password}",
|
||||
"-o", dest_path,
|
||||
"curl",
|
||||
"-sfSL",
|
||||
"-u",
|
||||
f"{config.nexus_username}:{config.nexus_password}",
|
||||
"-o",
|
||||
dest_path,
|
||||
download_url,
|
||||
],
|
||||
capture_output=True,
|
||||
|
||||
Reference in New Issue
Block a user