mirror of
https://review.haiku-os.org/haiku
synced 2024-11-23 07:18:40 +01:00
cf76c29456
Works on Linux, doesn't work on Haiku. It appears xsltproc tries to fetch the DTD and XSL stylesheets (which doesn't work, for some reason it wasn't built with HTTP support, and I can't figure out why). Even when telling it to use the preinstalled XSL & DTDs using --catalog, it still tries to download the files...
7 lines
108 B
Bash
Executable File
7 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
if [ -z "$1" ]; then
|
|
echo "Usage: $0 <format>"
|
|
exit 1
|
|
fi
|
|
xmlto $1 index.xml --skip-validation
|