We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03338d1 commit 54fe994Copy full SHA for 54fe994
cmd/sourcerer/VERSION
@@ -1 +1 @@
1
-v0.2.0
+v0.2.1
internal/fs/watcher.go
@@ -113,7 +113,7 @@ func (w *Watcher) handleEvent(event fsnotify.Event) {
113
}
114
115
func (w *Watcher) shouldIgnoreEvent(event fsnotify.Event) bool {
116
- if event.Op&(fsnotify.Write|fsnotify.Create|fsnotify.Remove) == 0 {
+ if event.Op&(fsnotify.Write|fsnotify.Create|fsnotify.Remove|fsnotify.Rename) == 0 {
117
return true
118
119
0 commit comments