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
My expected output would be that all files inside the ./dist directory and subdirectories should be checked against the exclude paths.
What actually happens is that the check stops at the level of the first subdirectory, i.e. the paths checked includes ./dist/static, and since that path is not itself in the excludeFiles the entirestatic subdirectory is included without checking any of the files within that directory against the excludeFiles list. i.e. all the *.js.map files inside the static/js subdirectory end up being added to the rpm instead of being excluded because those file paths never get tested against the excludeFiles list.
Tested on rpm_builder v1.1.0
The text was updated successfully, but these errors were encountered:
For the config:
My expected output would be that all files inside the
./dist
directory and subdirectories should be checked against the exclude paths.What actually happens is that the check stops at the level of the first subdirectory, i.e. the paths checked includes
./dist/static
, and since that path is not itself in theexcludeFiles
the entirestatic
subdirectory is included without checking any of the files within that directory against theexcludeFiles
list. i.e. all the*.js.map
files inside thestatic/js
subdirectory end up being added to the rpm instead of being excluded because those file paths never get tested against theexcludeFiles
list.Tested on rpm_builder v1.1.0
The text was updated successfully, but these errors were encountered: