From 8f5aa3ede477819f148b03fe2172f64da65e458c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 12 Jan 2008 20:50:06 +0000 Subject: [PATCH] --- upload.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/upload.py b/upload.py index deefb8b307..1161ee6194 100644 --- a/upload.py +++ b/upload.py @@ -68,11 +68,11 @@ def upload_demo(): '''--serif-family "/usr/share/fonts/corefonts, Times New Roman" ''' '''--mono-family "/usr/share/fonts/corefonts, Andale Mono" ''' ''''''%(HTML2LRF,)) - check_call('cd src/libprs500/ebooks/lrf/html/demo/ && zip /tmp/html-demo.zip * /tmp/html2lrf.lrf') + check_call('cd src/libprs500/ebooks/lrf/html/demo/ && zip -j /tmp/html-demo.zip * /tmp/html2lrf.lrf') check_call('''scp /tmp/html-demo.zip castalia:%s/'''%(DOWNLOADS,)) check_call('''txt2lrf -t 'Demonstration of txt2lrf' -a 'Kovid Goyal' ''' '''--header -o /tmp/txt2lrf.lrf %s/demo.txt'''%(TXT2LRF,) ) - check_call('cd src/libprs500/ebooks/lrf/txt/demo/ && zip /tmp/txt-demo.zip * /tmp/txt2lrf.lrf') + check_call('cd src/libprs500/ebooks/lrf/txt/demo/ && zip -j /tmp/txt-demo.zip * /tmp/txt2lrf.lrf') check_call('''scp /tmp/txt-demo.zip castalia:%s/'''%(DOWNLOADS,)) def upload_installers(exe, dmg):