mb0 / lab

golab: go local application builder - a web-based golang ide
BSD 2-Clause "Simplified" License
159 stars 16 forks source link

golab/main.go:38: undefined: ws.NewInotify #9

Open Bomin opened 11 years ago

Bomin commented 11 years ago

<-- This error game when trying to run 'go run golab/main.go'

There is no NewInotify constructor in package ws

Bomin

mb0 commented 11 years ago

yes there is https://github.com/mb0/lab/blob/master/ws/watcher_linux.go#L33

i guess you use an OS that is not linux and does not supported inotify. the readme states "Requires Linux and Go 1.1."

which OS do you use? maybe i can add another file change notification mechanism.

Bomin commented 11 years ago

That was it. I'm using os x.

I also checked only the ws.go -file and not the whole package. My mistake.