Open mrkam opened 8 years ago
I have the following gradle task:
task serve(type: GruntTask) { args = ['execute:serve'] }
which calls grunt-execute task that runs a server for me:
execute: { serve: { src: ['static_server.js'] } },
When I press ctrl-C in gradle console with the intent to stop the server, it actually only stops the server and node continues to run detached from its parent. This happens on Windows 7.
I have the same issue.
I have the following gradle task:
which calls grunt-execute task that runs a server for me:
When I press ctrl-C in gradle console with the intent to stop the server, it actually only stops the server and node continues to run detached from its parent. This happens on Windows 7.