1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-04-27 11:01:14 +00:00

fixed i18n.sh

This commit is contained in:
lins05 2012-11-06 13:30:31 +08:00
parent 2359296c03
commit f2c335032a

View File

@ -12,8 +12,12 @@ function usage () {
echo
}
apps="avatar base contacts group notifications organizations profile share"
apps="avatar base contacts group notifications organizations profile share thirdpart/auth"
function is_valid_app() {
if [[ $1 == "seahub" ]]; then
return 0;
fi
for app in ${apps}; do
if [[ $1 == $app ]]; then
return 0;