1
0

encoding changes

This commit is contained in:
acn
2020-12-03 15:52:48 +01:00
parent 6aee0588af
commit 12e2e2c263
21 changed files with 6 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -35,8 +35,10 @@ for pkg in ${DIRS}; do
if [ "${DATA[0]}" = "R" ]; then
if [ "${DATA[2]}" = "" ]; then
pandoc -f markdown -t plain -s ${pkg}/${DATA[1]} -o ${TMPDIR}/${NAME}.DOC
unix2dos ${TMPDIR}/${NAME}.DOC
else
pandoc -f markdown -t plain -s ${pkg}/${DATA[1]} -o ${TMPDIR}/${DATA[2]}
unix2dos ${TMPDIR}/${DATA[2]}
fi
fi
@@ -44,6 +46,9 @@ for pkg in ${DIRS}; do
[ "${DATA[0]}" = "D" ] && echo "${DATA[1]}" >> ${TMPDIR}/FILE_ID.DIZ
done < ${pkg}/.package
unix2dos ${TMPDIR}/FILE_ID.DIZ
zip -k -j ${TARGET}/${NAME}.ZIP ${TMPDIR}/*
rm -R ${TMPDIR}
done