Skip to content

Instantly share code, notes, and snippets.

@wknapik
Last active March 15, 2019 16:32
Show Gist options
  • Save wknapik/cc656be28f85524223151a6f9d849412 to your computer and use it in GitHub Desktop.
Save wknapik/cc656be28f85524223151a6f9d849412 to your computer and use it in GitHub Desktop.
Retry an action in a make recipe if it fails (up to a specified number of times)
# Example usage: $(call retry,3,something that might fail)
retry = for ((i=0; i < $1; ++i)); do ( $2 ) && exit 0; sleep 3; done; false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment