We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not sure because I still didn't face-out the issue. But reading the following: lib/support/helper.coffee:22-23
I found the usage of the find command is missing the options needed to listing also the symblinks.
find
Should be something like:
args = "-L #{p} " + extensions.map( (e) -> "-name *.#{e}" ).join(' -o ') + "-type l" find = spawn('find', args.split(' '))
Is useful if you are developing with npm link or bower link.
npm link
bower link
The text was updated successfully, but these errors were encountered:
Fix and close mechio#83
29fc934
Unfortunately the test didn't pass because the glob plugin returns a different number of match.
Sorry, something went wrong.
No branches or pull requests
Not sure because I still didn't face-out the issue.
But reading the following: lib/support/helper.coffee:22-23
I found the usage of the
find
command is missing the options needed to listing also the symblinks.Should be something like:
Is useful if you are developing with
npm link
orbower link
.The text was updated successfully, but these errors were encountered: