If a package has license for example MIT AND Zlib the CLI will give you option to whitelist "MIT AND Zlib". However, is_license_ok function splits complex licenses on AND and OR and therefore this won't work.
You need to manually add "MIT" and "Zlib" license to the license whitelist config to make it work
If a package has license for example
MIT AND Zlib
the CLI will give you option to whitelist"MIT AND Zlib"
. However,is_license_ok
function splits complex licenses onAND
andOR
and therefore this won't work.You need to manually add
"MIT"
and"Zlib"
license to the license whitelist config to make it work