mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 17:19:43 +02:00
11 lines
246 B
Bash
Executable File
11 lines
246 B
Bash
Executable File
#!/bin/sh
|
|
|
|
helpdir="../../help/manual"
|
|
tmpdir_="../../help/temp"
|
|
srcuri="http://manual.audacityteam.org"
|
|
|
|
mkdir -p "${tmpdir_}"
|
|
python mw2html.py "${srcuri}" "${tmpdir_}" -s
|
|
mv "${tmpdir_}/manual.audacityteam.org" "${helpdir}"
|
|
rm -r "${tmpdir_}"
|