diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,4 +1,5 @@ -all: check format push +all: quick push +xml: check format push check: @echo Checking for valid XML find . -name \*.xml -type f | while read xml; do \ @@ -11,5 +12,7 @@ format: mv "$$xml.tmp" "$$xml"; \ done git commit -a -m 'Reformatted XML' || exit 0 +quick: + git commit -a -m 'Quick commit' || exit 0 push: git push origin hosts |
