srs / gradle-gulp-plugin

Gradle plugin for running Gulp tasks
70 stars 9 forks source link

LF not translated to CRLF in Windows console #3

Closed mircolino closed 5 years ago

mircolino commented 9 years ago

When executing gradle in a Windows console the gulp task output is misaligned. Running gradle with --console plain fixes the problem:


c:\dev\prj>gradle gulp_js
:gulp_js
[23:19:03] Using gulpfile c:\dev\prj\gulpfile.js
                                                 [23:19:03] Starting 'js'...
                                                                             [23:19:03] Finished 'js' after 16 ms

BUILD SUCCESSFUL

Total time: 3.749 secs

c:\dev\prj>gradle gulp_js --console plain
:gulp_js
[23:19:19] Using gulpfile c:\dev\prj\gulpfile.js
[23:19:19] Starting 'js'...
[23:19:19] Finished 'js' after 14 ms

BUILD SUCCESSFUL

Total time: 3.639 secs

srs commented 9 years ago

Thanks for reporting. Will schedule this fix for next version (0.10) together with the same fix for Grunt and Node.

evpaassen commented 9 years ago

I'm experiencing this too. Will wait for 0.10.

srs commented 9 years ago

Think this is fixed by #6. Will test this further after 0.10 release if that fix does not fix your problem.

evpaassen commented 9 years ago

Unfortunately, this issue still exists in 0.10.

brian428 commented 9 years ago

Yep just a note that this also happens for me (just to let Sten know that it's not just one person who's seeing this).