lang: The "InvalidVoice" language file wasn't being included properly
It ended up inside the 'langs/voicestrings.zip' with an absolute path when it should of landed in langs/ directly. Change-Id: I308b551e627d63142ec8871ccfb72b6036eff3d2
This commit is contained in:
parent
9ad1ef0e55
commit
e4b514917e
2 changed files with 2 additions and 2 deletions
|
@ -46,4 +46,3 @@ hindi.lang
|
|||
japanese.lang
|
||||
korean.lang
|
||||
thai.lang
|
||||
InvalidVoice_english.talk
|
||||
|
|
|
@ -616,7 +616,8 @@ sub buildzip {
|
|||
# copy the already built lng files
|
||||
glob_copy('apps/lang/*.lng', "$temp_dir/langs/");
|
||||
glob_copy('apps/lang/*.zip', "$temp_dir/langs/");
|
||||
glob_copy('apps/lang/*.talk', "$temp_dir/langs/");
|
||||
# Copy over the Invalid Language fallback stuff
|
||||
glob_copy("$ROOT/apps/lang/Invalid*.talk", "$temp_dir/langs/");
|
||||
|
||||
# copy the .lua files
|
||||
glob_mkdir("$temp_dir/rocks/viewers/lua/");
|
||||
|
|
Loading…
Reference in a new issue