mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-05 02:39:23 +02:00
updated resources checking scripts
This commit is contained in:
parent
13190d2788
commit
7e8bd11ea9
4 changed files with 4 additions and 2 deletions
15
scripts/resources/update.sh
Executable file
15
scripts/resources/update.sh
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "$1" == "" ]; then
|
||||
part=application
|
||||
else
|
||||
part=$1
|
||||
fi
|
||||
|
||||
for file in ../../assets/resources/$part/*.xml; do
|
||||
xsltproc clean.xslt $file > `basename $file`;
|
||||
done
|
||||
for file in *.xml; do
|
||||
diff $file en.xml > `basename $file .xml`.diff;
|
||||
done
|
||||
rm *.xml
|
Loading…
Add table
Add a link
Reference in a new issue