Put Windows help files in the correct location

Fixes #2455
This commit is contained in:
Mislav Marohnić 2020-01-27 11:23:51 +01:00
Родитель c455473ad8
Коммит d92a3108f7
1 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -38,8 +38,10 @@ crlf() {
if [ "$os" = "windows" ]; then
crlf README.md "${tmpdir}/README.txt"
crlf LICENSE "${tmpdir}/LICENSE.txt"
mkdir "${tmpdir}/help"
for man in share/doc/*/*.html; do crlf "$man" "${tmpdir}/help/${man##*/}"; done
for man in share/doc/*/*.html; do
mkdir -p "${tmpdir}/${man%/*}"
cp "$man" "${tmpdir}/${man}"
done
crlf script/install.bat "${tmpdir}/install.bat"
else
cp -R README.md LICENSE etc share "$tmpdir"