🔀 Merge pull request #71 from ACH1980/master
Check for correct path in compile.sh
This commit is contained in:
commit
49581a18e8
1 changed files with 11 additions and 5 deletions
16
locales/compile.sh
Normal file → Executable file
16
locales/compile.sh
Normal file → Executable file
|
@ -1,11 +1,17 @@
|
|||
#!/bin/bash
|
||||
# This script compiles the unobot.po file for all languages.
|
||||
|
||||
function compile {
|
||||
cd './'$1'/LC_MESSAGES/'
|
||||
msgfmt unobot.po -o unobot.mo
|
||||
cd ../../
|
||||
}
|
||||
if [ ${PWD##*/} = "locales" ];
|
||||
then
|
||||
function compile {
|
||||
cd './'$1'/LC_MESSAGES/'
|
||||
msgfmt unobot.po -o unobot.mo
|
||||
cd ../../
|
||||
};
|
||||
else
|
||||
echo 'Only execute this in the "locales" directory'
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
# Deutsch
|
||||
compile de_DE
|
||||
|
|
Loading…
Reference in a new issue