From dc05511393a3ddbb59a85674ccb8b111533890cd Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Wed, 10 Jan 2018 19:05:58 +0200 Subject: Add: rsync -v, ikiwiki --verbose --- ql-ikiwiki-publish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ql-ikiwiki-publish b/ql-ikiwiki-publish index 7006504..1ed99ec 100755 --- a/ql-ikiwiki-publish +++ b/ql-ikiwiki-publish @@ -62,12 +62,12 @@ def mangle_setup(setup, tgtdir, htmldir): def run_ikiwiki(setup): - argv = ['ikiwiki', '--setup', setup, '--gettime'] + argv = ['ikiwiki', '--setup', setup, '--gettime', '--verbose'] subprocess.check_call(argv) def run_rsync(htmldir, target): - argv = ['rsync', '-a', '--delete', htmldir + '/.', target + '/.'] + argv = ['rsync', '-av', '--delete', htmldir + '/.', target + '/.'] subprocess.check_call(argv) -- cgit v1.2.1