1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 15:49:41 +02:00
2018-07-22 15:07:52 +01:00

11 lines
261 B
Bash
Executable File

#!/bin/sh
helpdir="../../help/manual"
tmpdir_="../../help/temp"
srcuri="https://alphamanual.audacityteam.org/man"
mkdir -p "${tmpdir_}"
python mw2html.py "${srcuri}" "${tmpdir_}" -s
mv "${tmpdir_}/alphamanual.audacityteam.org" "${helpdir}"
rm -r "${tmpdir_}"