Skip to content

Commit

Permalink
fix: we want the binary to be called rebounce
Browse files Browse the repository at this point in the history
  • Loading branch information
sean9999 committed Mar 19, 2023
1 parent 6755dd0 commit a2cd10e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/cmd/main.go",
"program": "${workspaceFolder}/cmd/rebounce/main.go",
"args": ["--dir", "${workspaceFolder}/tmp"]
}
]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Rebouncer is a generic library that takes a noisy source of events, and produces

It employes a plugin architecture that can allow it to be used flexibly whenever the fan-out/fan-in concurrency pattern is needed.

The canonical case is a file-watcher that discards events involving temp files and other artefacts, providing it's consumer with a clean, sane, and curated source of events. It is the engine behind [Fasthak](https://www.seanmacdonald.ca/posts/fasthak/).
The canonical case is a file-watcher that discards events involving temp files and other artefacts, providing its consumer with a clean, sane, and curated source of events. It is the engine behind [Fasthak](https://www.seanmacdonald.ca/posts/fasthak/).

For the canonical case, rebouncer is also available as a binary. It takes a directory as an argument, producing SSE events to stdout.

Expand Down Expand Up @@ -83,4 +83,4 @@ for niceEvent := range stateMachine.Subscribe() {
}
```

For more detailed docs, see [the docs](https://godoc.org/sean9999/go/rebouncer)
For more detailed docs, see [the docs](https://godoc.org/sean9999/go/rebouncer)
File renamed without changes.
7 changes: 7 additions & 0 deletions publish.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh

echo input semver
read version

echo GOPROXY=proxy.golang.org go list -m github.com/sean9999/rebouncer@${version}

0 comments on commit a2cd10e

Please sign in to comment.