You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
455 B
10 lines
455 B
#!/bin/bash
|
|
# Build and upload LibUCW documentation and web pages
|
|
# (c) 2012--2015 Martin Mares <mj@ucw.cz>
|
|
|
|
set -e
|
|
rm -rf maint/tmp/doc
|
|
mkdir -p maint/tmp/doc
|
|
make install-libucw-docs install-libucw-json-docs install-libucw-xml-docs PREFIX=. INSTALL_DOC_DIR=maint/tmp/doc
|
|
rsync -avz --delete maint/tmp/doc/ jw:/var/www/libucw/doc/
|
|
rsync -avz --no-times --no-perms --executability --omit-dir-times WWW/ jw:/var/www/libucw/ --exclude=doc --exclude='*.swp'
|
|
|