Reputation: 672
In my configuration file where
EXCLUDE = ./fileToBeExcluded
and it works fine, but if I want to exclude more files, there is no way. I have tried:
EXCLUDE = ./fileToBeExcluded
./fileToBeExcluded2
EXCLUDE = ./fileToBeExcluded,
./fileToBeExcluded2
EXCLUDE = ./fileToBeExcluded
EXCLUDE = ./fileToBeExcluded2
Any suggestions?? Thank you
Upvotes: 1
Views: 1638
Reputation: 672
Found the solution. I had to use the backSlash "\"
EXCLUDE = ./fileToBeExcluded \
./fileToBeExcluded2
and that works.
Upvotes: 1