Closed sanamichael closed 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
While running envoy from windows command line I had problem with story. when story tasks are preceded by spaces or tab like below :
On Windows platform, the endMacro() return:
( which is not the case for linux platform )
instead of this for Windows platform :
This is a fix for that