1
0

docker windows build: fix missing translations

This commit is contained in:
SomberNight
2018-06-30 18:56:50 +02:00
parent b60751faef
commit 2d29c9313f
3 changed files with 7 additions and 2 deletions

View File

@@ -45,6 +45,10 @@ VERSION=`git describe --tags --dirty`
echo "Last commit: $VERSION"
pushd ./contrib/deterministic-build/electrum-locale
if ! which msgfmt > /dev/null 2>&1; then
echo "Please install gettext"
exit 1
fi
for i in ./locale/*; do
dir=$i/LC_MESSAGES
mkdir -p $dir