Skip to content

Commit

Permalink
Fix bug for validating GPU packages (#8997)
Browse files Browse the repository at this point in the history
  • Loading branch information
chilo-ms authored Sep 8, 2021
1 parent a30d9f5 commit 5ae4c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/nuget/validate_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down

0 comments on commit 5ae4c54

Please sign in to comment.