- Commit
- db74dffd138bbe1e054b7bae4d8f5039d6c8844d
- Parent
- 44706503a2003c44cfef8015580504b016b016c9
- Author
- John MacFarlane <jgm@berkeley.edu>
- Date
Fixed update-site to do a pull first
My personal build of CMark ✏️
Fixed update-site to do a pull first
1 file changed, 1 insertion, 1 deletion
Status | File Name | N° Changes | Insertions | Deletions |
Modified | Makefile | 2 | 1 | 1 |
diff --git a/Makefile b/Makefile @@ -66,7 +66,7 @@ update-site: spec.html narrative.html cp spec.html _site/ cp narrative.html _site/index.html cp -r js/* _site/js/ - (cd _site ; git commit -a -m "Updated site for latest spec, narrative, js" ; git push; cd ..) + (cd _site ; git pull ; git commit -a -m "Updated site for latest spec, narrative, js" ; git push; cd ..) clean: -rm test $(SRCDIR)/*.o $(SRCDIR)/scanners.c