[O] batch publish all, forcing. how?

2011-04-07 Thread lbmlist
I've been experimenting with: emacs23 --batch -l ~/.emacs -f org-publish-all to publish a total fresh version of my project, but it misses some files (an unchanging .css for example) I suspect the optional force (defun org-publish-all (&optional force)... might help, but I don't know lisp we

Re: [O] batch publish all, forcing. how?

2011-04-07 Thread Nick Dokos
lbml...@hethcote.com wrote: > > I've been experimenting with: > > emacs23 --batch -l ~/.emacs -f org-publish-all > > to publish a total fresh version of my project, but it misses some > files (an unchanging .css for example) > > I suspect the optional force (defun org-publish-all (&optional fo

Re: [O] batch publish all, forcing. how?

2011-04-07 Thread lbmlist
On Thu, 7 Apr 2011, Nick Dokos wrote: Add a function to your .emacs --8<---cut here---start->8--- (defun org-publish-all-force () (interactive) (org-publish-all t)) --8<---cut here---end--->8--- and call it instead