Skip to content

Instantly share code, notes, and snippets.

@1stvamp
Last active May 17, 2017 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1stvamp/02a555dc5dcd1073c73804d1b66841e5 to your computer and use it in GitHub Desktop.
Save 1stvamp/02a555dc5dcd1073c73804d1b66841e5 to your computer and use it in GitHub Desktop.
Script for testing subprocess running git, with random failure
#!/bin/bash
if (( $RANDOM % 2 )); then
>&2 echo 'Random failure'
exit 1
fi
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment