1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-16 08:34:10 +02:00

Merge branch 'master' into scrubbing

This commit is contained in:
Paul Licameli 2016-04-24 15:00:41 -04:00
commit 0d5a409e9a
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
python mw2html.py http://manual.audacityteam.org/man ..\..\help\temp -s
python mw2html.py http://alphamanual.audacityteam.org/man ..\..\help\temp -s
rmdir /S /Q ..\..\help\manual
mkdir ..\..\help\manual
xcopy ..\..\help\temp\manual.audacityteam.org ..\..\help\manual\ /E /C /Y /Q
xcopy ..\..\help\temp\alphamanual.audacityteam.org ..\..\help\manual\ /E /C /Y /Q
rmdir /S /Q ..\..\help\temp

View File

@ -2,9 +2,9 @@
helpdir="../../help/manual"
tmpdir_="../../help/temp"
srcuri="http://manual.audacityteam.org/man"
srcuri="http://alphamanual.audacityteam.org/man"
mkdir -p "${tmpdir_}"
python mw2html.py "${srcuri}" "${tmpdir_}" -s
mv "${tmpdir_}/manual.audacityteam.org" "${helpdir}"
mv "${tmpdir_}/alphamanual.audacityteam.org" "${helpdir}"
rm -r "${tmpdir_}"