-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
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
Many problems, help appreciated :) #154
Comments
gaze works on file patterns rather than file paths, so you're correct about using the You should get a rename event.
|
I have to use I am on Debian Jessie and I use Node v0.10.32. |
And yep I am doing |
And after some time, I get the following error:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Gaze install:
Test code:
/tmp
directory is picked up.'/tmp/*'
pattern to indicate I want to watch files inside.But now, if file change and deletion is correctly detected, addition and renaming still does not work.
['/tmp', '/tmp/*']
as the pattern. But I still get the same behavior 😢cwd
options so now I use'*'
for the pattern and'/tmp'
ascwd
. Now we're getting somwhere! The creation, change and deletion work but still no luck for renaming, I only get a delete event :/Another problem is that when I delete all files (
rm -f *
) only the deletion of the first one is picked up.What am I doing wrong?
The text was updated successfully, but these errors were encountered: