We have TFS2015 and build definition that look like following:
When I trigger the build I get output with wrong character encoding:
2016-09-07T11:40:29.2722404Z ΓööΓöÇΓöÇ [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected]) 2016-09-07T11:40:29.2722404Z [email protected] node_modules\run-sequence 2016-09-07T11:40:29.2722404Z ΓööΓöÇΓöÇ [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected]) 2016-09-07T11:40:29.2722404Z [email protected] node_modules\vinyl-source-stream 2016-09-07T11:40:29.2722404Z Γö£ΓöÇΓöÇ [email protected] ([email protected], [email protected]) 2016-09-07T11:40:29.2722404Z ΓööΓöÇΓöÇ [email protected] ([email protected], [email protected]) 2016-09-07T11:40:29.2722404Z [email protected] node_modules\gulp-concat 2016-09-07T11:40:29.2762404Z Γö£ΓöÇΓöÇ [email protected] ([email protected]) 2016-09-07T11:40:29.2762404Z ΓööΓöÇΓöÇ [email protected] ([email protected], [email protected]) 2016-09-07T11:40:29.2762404Z [email protected] node_modules\vinyl-buffer 2016-09-07T11:40:29.2762404Z Γö£ΓöÇΓöÇ [email protected] ([email protected], [email protected]) Any idea how to fix it?
EDIT: When I log to the Build Server VM and run npm install from command prompt, I get correct output:
[email protected] node_modules\run-sequence └── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected]) [email protected] node_modules\merge-stream └── [email protected] ([email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected]) [email protected] node_modules\vinyl-source-stream ├── [email protected] ([email protected], [email protected]) └── [email protected] ([email protected], [email protected]) DEV-MACHINE ENVIRONMENT:
OS Name: Microsoft Windows 10 Enterprise Active code page: 437 (both build server and dev machine) System Locale: sk;Slovak Node version: 5.10.1 NPM version: 3.8.5
BUILD SERVER ENVIRONMENT
OS Name: Microsoft Windows Server 2012 R2 Standard Active code page: 437 (both build server and dev machine) System Locale: en-us;English (United States) Node version: 5.10.1 NPM version: 3.8.5
TFS Version is 14.102.25423.0 (Update 3), but it resides on another server, where I don't have access. I see only the webportal.
Steps to reproduce:
- npm init
- npm install run-sequence --save-dev
- push to TFS Git repository
- create build definition with single step: npm install
- queue new build

