Skip to content

Instantly share code, notes, and snippets.

@kikoso
Last active March 23, 2020 15:15
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 kikoso/d6024e455c733fb91798621ae487a375 to your computer and use it in GitHub Desktop.
Save kikoso/d6024e455c733fb91798621ae487a375 to your computer and use it in GitHub Desktop.
#!/bin/sh
read -p "Have the feature been tested? (y/N):" answer
if [[ "$answer" != "y" ]]; then
exit 1
fi
read -p "Have you updated your Jira? (y/N):" answer
if [[ "$answer" != "y" ]]; then
exit 1
fi
read -p "Have you created a test version? (y/N):" answer
if [[ "$answer" != "y" ]]; then
exit 1
fi
read -p "Have you done that task you should have done? (y/N):" answer
if [[ "$answer" != "y" ]]; then
exit 1
fi
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment