Created
November 9, 2016 22:34
-
-
Save jonico/0095b1115a4010a3aa3633710c291e97 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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