rules.mk: Now not pulling origin master in update target anymore, just plain git pull

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2014-06-19 10:17:17 +00:00
commit 4b79a596d6

View file

@ -94,7 +94,7 @@ love:
@echo "Not war?"
cvsupdate update:
if [ -d "CVS" ]; then cvs update -dP; else git pull origin master; fi
if [ -d "CVS" ]; then cvs update -dP; else git pull; fi
cvsdiff diff:
if [ -d "CVS" ]; then cvs diff -dP; else git --no-pager diff; fi