← Back to team overview

ubuntukylin-members team mailing list archive

[Branch ~ubuntukylin-members/ubuntukylin-default-settings/trunk] Rev 196: Avoid problem when zh_CN is not found

 

------------------------------------------------------------
revno: 196
committer: Aron Xu <happyaron.xu@xxxxxxxxx>
branch nick: ubuntukylin-default-settings
timestamp: Wed 2015-09-23 21:35:50 +0800
message:
  Avoid problem when zh_CN is not found
modified:
  debian/Z99-zip-gbk.sh


--
lp:ubuntukylin-default-settings
https://code.launchpad.net/~ubuntukylin-members/ubuntukylin-default-settings/trunk

Your team Ubuntu Kylin Members is subscribed to branch lp:ubuntukylin-default-settings.
To unsubscribe from this branch go to https://code.launchpad.net/~ubuntukylin-members/ubuntukylin-default-settings/trunk/+edit-subscription
=== modified file 'debian/Z99-zip-gbk.sh'
--- debian/Z99-zip-gbk.sh	2015-09-18 02:19:56 +0000
+++ debian/Z99-zip-gbk.sh	2015-09-23 13:35:50 +0000
@@ -1,4 +1,4 @@
-if [ `echo $LANGUAGE | grep zh_CN` != "" ]; then
+if [ "`echo $LANGUAGE | grep zh_CN`" != "" ]; then
     export UNZIP="-O GBK"
     export ZIPINFO="-O GBK"
 fi