Skip to content

Commit

Permalink
Fix problem with the ms->zlm copy in the installer
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonleenaylor committed Dec 16, 2024
1 parent cfc5a1a commit 900f5de
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Build/Installer.targets
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,8 @@
<PropertyGroup>
<!-- Substring keeps Chinese the same length as everyone else (and '-' is an illegal character in some places) -->
<!-- "The nail that sticks up gets hammered down" (Japanese proverb) -->
<SafeTargetLocale>$(TargetLocale.Substring(0,2))</SafeTargetLocale>
<SafeTargetLocale Condition="'$(TargetLocale)'=='zh-CN'">$(TargetLocale.Substring(0,2))</SafeTargetLocale>
<SafeTargetLocale Condition="'$(TargetLocale)'!='zh-CN'">$(TargetLocale)</SafeTargetLocale>
<!-- KeyPathFix changes KeyPath="yes" to KeyPath="no" so we can overwrite later versions of files, if necessary. -->
<!-- See https://github.com/sillsdev/genericinstaller's README for details. -->
<KeyPathFixArg Condition="'$(FixKeyPath)'=='true'">-t $(InstallerDir)/BaseInstallerBuild/KeyPathFix.xsl</KeyPathFixArg>
Expand Down

0 comments on commit 900f5de

Please sign in to comment.