compose/pkg/watch/watcher_nonwin.go

11 lines
178 B
Go

//go:build !windows
// +build !windows
package watch
import "github.com/tilt-dev/fsnotify"
func MaybeIncreaseBufferSize(w *fsnotify.Watcher) {
// Not needed on non-windows
}