Skip to content

Instantly share code, notes, and snippets.

@kingel
Created February 18, 2016 12:25
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 kingel/571dd280c36c8cdfab0c to your computer and use it in GitHub Desktop.
Save kingel/571dd280c36c8cdfab0c to your computer and use it in GitHub Desktop.
#!/bin/sh
ud=`git status -u --porcelain | grep '??' | grep 'migrations'`
if [ -n "$ud" ];
then
cat <<\EOF
Warning: Unadded migrations
EOF
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment