laravel / envoy

Elegant SSH tasks for PHP.
https://laravel.com/docs/envoy
MIT License
1.57k stars 178 forks source link

Fix trim on windows for listed story tasks when some are preceded by … #236

Closed sanamichael closed 3 years ago

sanamichael commented 3 years ago

While running envoy from windows command line I had problem with story. when story tasks are preceded by spaces or tab like below :

@story('deploy')
task_1
 task_2
   task_3
    task_4
@endstory

On Windows platform, the endMacro() return:

array:4 [
  0 => "task_1"
  1 => " task_2"
  2 => "   task_3"
  3 => "    task_4"
]

( which is not the case for linux platform )

instead of this for Windows platform :

array:4 [
  0 => "task_1"
  1 => "task_2"
  2 => "task_3"
  3 => "task_4"
]

This is a fix for that