diff options
-rwxr-xr-x | pocompile.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pocompile.sh b/pocompile.sh index e9cf3b1..5fdd98a 100755 --- a/pocompile.sh +++ b/pocompile.sh @@ -6,7 +6,7 @@ cd i18n for ITEM in *.po; do LANG=${ITEM/.po/} - if [ $1 == "-emerge" ]; then + if [ "$1" == "-emerge" ]; then mkdir mo -p msgfmt ${ITEM} -o mo/${LANG}.mo else |