From 22009bf46668228865b9f5924411ed33aa71cee0 Mon Sep 17 00:00:00 2001 From: Gang Li Date: Wed, 25 Jun 2025 16:49:15 +0800 Subject: [PATCH] RADAS: fix a flag typo in upload for radas signing --- charon/cmd/cmd_upload.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/charon/cmd/cmd_upload.py b/charon/cmd/cmd_upload.py index 2ad294f5..3a0e6990 100644 --- a/charon/cmd/cmd_upload.py +++ b/charon/cmd/cmd_upload.py @@ -137,13 +137,11 @@ ) @option("--dryrun", "-n", is_flag=True, default=False) @option( - "--sign_result_loc", + "--sign_result_file", "-l", - default="/tmp/sign", help=""" - The local save path for oras to pull the radas signature result. - Sign request will use this path to download the signature result, - Upload will use the file on this path to generate the corresponding .asc files + The path of the file which contains radas signature result. + Upload will use the file to generate the corresponding .asc files """, ) @command()