We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce20fd4 commit a91e189Copy full SHA for a91e189
tools/create-silk-asset-group.py
@@ -161,7 +161,7 @@ def create_asset_group(
161
"name": project,
162
"code_repo_url": code_repo_url,
163
"branch": branch,
164
- "file_path": [],
+ "file_paths": ["*"],
165
"metadata": {
166
"sbom_lite_path": sbom_lite_path,
167
},
@@ -172,7 +172,7 @@ def create_asset_group(
172
)
173
try:
174
with urllib.request.urlopen(req) as resp:
175
- json.loads(resp.read()) # No-op, but validates that JSON was returned
+ print(json.loads(resp.read())) # No-op, but validates that JSON was returned
176
except urllib.error.HTTPError as err:
177
if err.status == 409 and exist_ok:
178
# 409: Conflict
0 commit comments