mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-23 22:13:38 +00:00
Fix bug for validating GPU packages (#8997)
This commit is contained in:
parent
a30d9f5317
commit
5ae4c54ab8
1 changed files with 1 additions and 1 deletions
|
|
@ -237,7 +237,7 @@ def validate_nuget(args):
|
|||
|
||||
if (args.verify_nuget_signing == 'true'):
|
||||
print('Verifying if Nuget has been signed')
|
||||
if(not check_if_nuget_is_signed(args.nuget_path)):
|
||||
if(not check_if_nuget_is_signed(args.package_path)):
|
||||
print('Nuget signing verification failed')
|
||||
raise Exception('Nuget signing verification failed')
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue