2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-22 01:45:19 +01:00

android: proper escaping in gen-version.sh

This commit is contained in:
Bohdan Shulyar 2021-10-09 20:09:38 +03:00 committed by a1batross
parent a4ec54551a
commit acba3e8c7b

View File

@ -11,7 +11,7 @@ echo -n '<string name="git_revisions">' >> $GIT_REV_XML
echo -n '<b>Version information:</b>\n' >> $GIT_REV_XML
git submodule --quiet foreach --recursive \
'echo -n \<b\>`basename $name`:\</b\>\ \
`git log --abbrev-commit --pretty=oneline -1 | sed "s/\&/\&amp/g;s/>/&gt/g;s/</&lt/g"`\\\\n' \
`git log --abbrev-commit --pretty=oneline -1 | sed "s/\&/\&amp;/g;s/>/\&gt;/g;s/</\&lt;/g"`\\\\n' \
| sed -e "s|'|\\\'|g" >> $GIT_REV_XML
echo -n $USER@$(hostname) $(date +%H:%M:%S-%d-%m-%y) >> $GIT_REV_XML
echo '</string>' >> $GIT_REV_XML