Tool to retry a command in case it fails. Prepend retry to your command and it will retry the command in case of an exit code other than zero.
Please note, in case data is piped into the tool, retry will read and buffer any data from standard input and reuse it with every other attempt.
The homeport/tap has macOS and GNU/Linux pre-built binaries available:
brew install homeport/tap/retryPrebuilt binaries can be downloaded from the GitHub Releases section.
There is a convenience script to download the latest release for Linux or macOS if you want to need it simple (you need curl and jq installed on your machine):
curl --silent --location https://raw.githubusercontent.com/homeport/retry/main/hack/download.sh | bashWe are happy to have other people contributing to the project. If you decide to do that, here's how to:
- get Go (
retryrequires Go version 1.20 or greater) - fork the project
- create a new branch
- make your changes
- open a PR.
Git commit messages should be meaningful and follow the rules nicely written down by Chris Beams:
The seven rules of a great Git commit message
- Separate subject from body with a blank line
- Limit the subject line to 50 characters
- Capitalize the subject line
- Do not end the subject line with a period
- Use the imperative mood in the subject line
- Wrap the body at 72 characters
- Use the body to explain what and why vs. how
Run test cases:
ginkgo run ./...Create binaries:
goreleaser build --rm-dist --snapshotLicensed under MIT License