mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Some are real bugs, some are bashisms, but most is zealous quoting of variables. Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
15 lines
681 B
Bash
Executable file
15 lines
681 B
Bash
Executable file
#!/bin/sh
|
|
set -ev
|
|
|
|
# Download translations from the latest nightly build
|
|
# This will overwrite any uncommitted changes to messages.json files
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
svn export --force --depth files https://svn.wildfiregames.com/nightly-build/trunk/binaries/data/l10n ../../../binaries/data/l10n
|
|
|
|
for m in "mod" "public"; do
|
|
svn export --force --depth files https://svn.wildfiregames.com/nightly-build/trunk/binaries/data/mods/${m}/l10n ../../../binaries/data/mods/${m}/l10n
|
|
done
|
|
|
|
svn export --force https://svn.wildfiregames.com/nightly-build/trunk/binaries/data/mods/public/gui/credits/texts/translators.json ../../../binaries/data/mods/public/gui/credits/texts/translators.json
|