[ 
https://issues.jenkins-ci.org/browse/JENKINS-10856?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Dmitry Sviridov updated JENKINS-10856:
--------------------------------------

    Attachment: msbuild-plugin-1.11.1.zip

merge changes with 1.11
                
> Incorrect Cyrillic symbols in Console output
> --------------------------------------------
>
>                 Key: JENKINS-10856
>                 URL: https://issues.jenkins-ci.org/browse/JENKINS-10856
>             Project: Jenkins
>          Issue Type: Bug
>          Components: msbuild
>    Affects Versions: current
>         Environment: Windows 7 Rus
>            Reporter: Dmitry Sviridov
>            Assignee: gbois
>            Priority: Minor
>         Attachments: msbuild-plugin-1.11.1.zip, msbuild-plugin-1.8.1.1.Zip, 
> msbuild.hpi, screen.zip
>
>
> Incorrect Cyrillic symbols in Console output.
> Can be solved by change MsBuildBuilder class
> Line 122 from:
> if (!launcher.isUnix()) {
>             args.prepend("cmd.exe", "/C");
>             args.add("&&", "exit", "%%ERRORLEVEL%%");
>         } 
> To:
> if (!launcher.isUnix()) {
>             String winCodepage = "1251";
>             args.prepend("cmd.exe", "/C", "chcp", winCodepage, ">", "NUL", 
> "&");
>             args.add("&&", "exit", "%%ERRORLEVEL%%");
>         }
> But winCodepage nead add to configure.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.jenkins-ci.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to