move all options to the default-initargs, for maximum customizability

This commit is contained in:
Masataro Asai 2019-10-27 14:58:13 -04:00
parent eacc598930
commit dd53a77595
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@
(defvar *args* nil)
(defmethod deploy (staging)
(coleslaw::run-program "rsync --delete ~{~A~^ ~} -avz ~A ~A" *args*
(coleslaw::run-program "rsync ~{~A~^ ~} ~A ~A" *args*
(merge-pathnames staging)
(merge-pathnames (deploy-dir *config*))))

View file

@ -21,7 +21,7 @@
(:default-initargs
:feeds nil
:license nil
:plugins '((rsync "--delete"))
:plugins '((rsync "-avz" "--delete" "--exclude" ".git/" "--exclude" ".gitignore" "--copy-links"))
:sitenav nil
:excerpt-sep "<!--more-->"
:charset "UTF-8"