You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the include parameter is based on evaluating the glob in the shell, outside of the tool.
In the polkadot-sdk repo, if we run it for all of the sub-repos, we hit the limit of the length of arguments in a shell.
We should look into moving the evaluation into the tool, to avoid this problem.
In an illustrative example:
Change license-scanner ./**/*.rs into license-scanner './**/*.rs'
The text was updated successfully, but these errors were encountered:
Currently, the
include
parameter is based on evaluating the glob in the shell, outside of the tool.In the
polkadot-sdk
repo, if we run it for all of the sub-repos, we hit the limit of the length of arguments in a shell.We should look into moving the evaluation into the tool, to avoid this problem.
In an illustrative example:
Change
license-scanner ./**/*.rs
intolicense-scanner './**/*.rs'
The text was updated successfully, but these errors were encountered: