mirror of
https://github.com/xiph/opus.git
synced 2025-06-03 17:17:42 +00:00
11 lines
244 B
Bash
Executable file
11 lines
244 B
Bash
Executable file
#!/bin/sh
|
|
|
|
#Stop on errors
|
|
set -e
|
|
#Set the CWD to the location of this script
|
|
[ -n "${0%/*}" ] && cd "${0%/*}"
|
|
|
|
echo running xml2rfc
|
|
xml2rfc draft-terriberry-oggopus.xml draft-terriberry-oggopus.html &
|
|
xml2rfc draft-terriberry-oggopus.xml
|
|
wait
|