1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #!/bin/sh
- set -e
- [ -n "${0%/*}" ] && cd "${0%/*}"
- if test -z `which xml2rfc 2> /dev/null`; then
- echo "Error: couldn't find xml2rfc."
- echo
- echo "Please install xml2rfc version 2 or later."
- echo "E.g. 'pip install xml2rfc' or follow the instructions"
- echo "on http://pypi.python.org/pypi/xml2rfc/ or tools.ietf.org."
- exit 1
- fi
- echo running xml2rfc
- xml2rfc draft-ietf-codec-oggopus.xml --text --html
|