NuGetKeyVaultSignTool
NuGetKeyVaultSignTool copied to clipboard
Tool cannot verify wildcard paths
Tool 'nugetkeyvaultsigntool' (version '3.2.3')
>NuGetKeyVaultSignTool verify "test/*.nupkg"
Signature is valid
> NuGetKeyVaultSignTool verify "test/1.nupkg"
The package is not signed.
Finished with 1 errors and 0 warnings.
Signature is invalid
> NuGetKeyVaultSignTool verify "test/2.nupkg"
Signature is valid
In addition, a mistyped file path causes the same result. The first two examples are good examples for reference; the third example is a bug.
NuGetKeyVaultSignTool verify /tmp/exists-signed.nupkg
Signature is valid
NuGetKeyVaultSignTool verify /tmp/exists-unsigned.nupkg
The package is not signed.
Finished with 1 errors and 0 warnings.
NuGetKeyVaultSignTool verify /tmp/does-not-exist.nupkg
Signature is valid
I don't know if this is related but on Windows if I use '/' path separators then it doesn't work for me - I have to use '' path separators.