If an input on the CLI or in the input-file-list contains a wildcard character, treat it as a glob. For example, this will now work:
azuresigntool ... C:\files\*.exe # glob by extension
azuresigntool ... C:\files\**\*.exe # glob including subdirectories
This implementation explicitly requires the use of an asterisk for globbing. "C:\files\" will not be treated as as sign everything in that directory. It must have a pattern like "C:\files*\" to sign everything under a directory.
If an input on the CLI or in the input-file-list contains a wildcard character, treat it as a glob. For example, this will now work:
This implementation explicitly requires the use of an asterisk for globbing. "C:\files\" will not be treated as as sign everything in that directory. It must have a pattern like "C:\files*\" to sign everything under a directory.
Fixes #206