Skip to content

Instantly share code, notes, and snippets.

@jonico
Created November 9, 2016 22:34
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 jonico/0095b1115a4010a3aa3633710c291e97 to your computer and use it in GitHub Desktop.
Save jonico/0095b1115a4010a3aa3633710c291e97 to your computer and use it in GitHub Desktop.
#!/bin/bash
repoSize=`du -hsk | cut -f 1`
if [ $repoSize -gt "1500" ]; then
echo "Repository size is greater than 1500 kb : ${repoSize}"
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment