Jesse Lang

Results 31 comments of Jesse Lang

I'm not familiar with the program or framework you're using, but I've seen loops with `modd` when the command you're running writes changes to files that `modd` is watching. Excluding...

I don't believe so. I believe you could instead use multiple `prep` directives in a single block to achieve the desired outcome. ``` **/*.txt { prep: echo "prep 1" prep:...

Interesting. Looks like [growl](https://github.com/growl/growl) is a retired project as of Nov 2020.

Does that error message appear once, or during each daemon reload? Outside of the error message shown above, does `modd` work as you expect? Could you please clarify whether `modd...

Using `go install` does not work for me. ``` % go install github.com/cortesi/modd/cmd/modd@latest # github.com/rjeczalik/notify ../../dev/go/pkg/mod/github.com/rjeczalik/[email protected]/watcher_fsevents.go:49:11: undefined: stream ../../dev/go/pkg/mod/github.com/rjeczalik/[email protected]/watcher_fsevents.go:200:13: undefined: newStream ```

Thanks for the suggestion, but it doesn't seem to make a difference. I'd be happy to open a separate issue if desired. ``` % go version go version go1.18 darwin/amd64...

Ah, CGO_ENABLED must be enabled. I have it set to zero by default. This worked. ``` CGO_ENABLED=1 go install github.com/cortesi/modd/cmd/modd@latest ```

It appears the brew formulae for `modd` was [disabled on September 14th, 2022](https://github.com/Homebrew/homebrew-core/commit/2e8abff89073a5bbe761080893b3a0992543b23a) after being [deprecated on August 27th, 2021](https://github.com/Homebrew/homebrew-core/commit/51d770dc5586b30518f5aad650dfd1a1ea83cf83). https://github.com/Homebrew/homebrew-core/pull/84056 offers meaningful context (referencing #96) which points to the...

@joncalhoun, I'd be interested in your review of my findings, and perhaps we could work together toward a resolution? Thanks much!

@joncalhoun, with #123 merged, I believe the next step would be to create a new release. After which, the homebrew formula could be updated to use that new release. Thoughts?