diff options
author | mstsirkin <mstsirkin@0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652> | 2015-02-05 13:06:57 +0000 |
---|---|---|
committer | mstsirkin <mstsirkin@0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652> | 2015-02-05 13:06:57 +0000 |
commit | f64afc0564b5f9970b65aa81f72f258eaad15bf2 (patch) | |
tree | fb18131f27d97767eea4f9b8c54232403e53d12a /makehtml.sh | |
parent | 86e51b41cb03025463e242d735048ffecbd6b7a2 (diff) |
makehtml: only pack one html file
We used to have multiple html files, but no more, so
packing files using * glob doesn't make sense -
and tends to include random unnecessary files
if the names happen to match.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
git-svn-id: https://tools.oasis-open.org/version-control/svn/virtio/branches/v1.0@475 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
Diffstat (limited to 'makehtml.sh')
-rwxr-xr-x | makehtml.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makehtml.sh b/makehtml.sh index b2f044c..e18c350 100755 --- a/makehtml.sh +++ b/makehtml.sh @@ -47,4 +47,4 @@ rm $SPECDOC.tmp* #uncomment if you have a broken t4ht #cp ./t4ht-workaround/virtio-v1.0-csd01.css $SPECDOC.css -zip $SPECDOC.zip $SPECDOC*.html $SPECDOC.css images/*.png +zip $SPECDOC.zip $SPECDOC.html $SPECDOC.css images/*.png |