Skip to content

Commit 27766f9

Browse files
committed
support output option for upload cmd too
Signed-off-by: Vivek Kumar Sahu <[email protected]>
1 parent 91c2b10 commit 27766f9

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

lynkctx.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ def upload(self, sbom_file):
399399
return 1
400400
if version_id:
401401
self.ver_id = version_id
402-
print("SBOM ID successfully returned in the response: ", self.ver_id)
402+
logging.debug("SBOM ID successfully returned in the response: %s", self.ver_id)
403403
logging.debug("SBOM upload response: %s", response.text)
404404
else:
405405
print("Error: SBOM ID not returned in the response.")

pylynk.py

+4
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,11 @@ def upload_sbom(lynk_ctx, sbom_file, download):
220220
Args:
221221
lynk_ctx: The lynk context object.
222222
sbom_file: The path to the SBOM file.
223+
download: download file after the automationStatus is completed
223224
224225
Returns:
225226
The result of the upload operation.
227+
If download is true, then along with upload operation it also performs download operation
226228
"""
227229
upload_result = lynk_ctx.upload(sbom_file)
228230

@@ -317,6 +319,8 @@ def setup_args():
317319
help="Security token")
318320
upload_parser.add_argument("--download", action="store_true",
319321
help="Download SBOM after upload (default: False)")
322+
upload_parser.add_argument(
323+
"--output", help="Output file", required=False)
320324

321325
download_parser = subparsers.add_parser("download", help="Download SBOM")
322326
download_group = download_parser.add_mutually_exclusive_group(

0 commit comments

Comments
 (0)