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
globby.sync('/*') returns []
globby.sync('/*')
[]
Should it not return a list with the files along the same lines as require('fs').readdirSync('/')?
require('fs').readdirSync('/')
The text was updated successfully, but these errors were encountered:
Might be related to mrmlnc/fast-glob#277
Sorry, something went wrong.
nice, thanks for the investigation!
ls /
This doesn't seem to be a problem any more, at least with onlyFiles: false
onlyFiles: false
> require('globby').sync('/*', { onlyFiles: false }) [ '/Applications', '/Library', '/System', '/Users', '/Volumes', '/bin', '/com.apple.TimeMachine.localsnapshots', '/cores', '/dev', '/etc', '/home', '/opt', '/private', '/sbin', '/tmp', '/usr', '/var' ]
No branches or pull requests
Actual:
globby.sync('/*')
returns[]
Expected
Should it not return a list with the files along the same lines as
require('fs').readdirSync('/')
?The text was updated successfully, but these errors were encountered: