added update script

This commit is contained in:
Justin Moore 2015-02-25 05:19:23 -06:00
parent 9ab91f0dd4
commit 6b77a0a9a2

13
update.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/bash
if [[ $EUID -eq 0 ]]; then
echo "$0 : Do not run this script as root"
exit 1
fi
if [ -d .git ];then
git pull
else
echo "This is not a git repo, aborting"
exit 0;
fi