dsccommunity / xRobocopy

DSC Module to automate Robocopy transfers
MIT License
54 stars 15 forks source link

multiple arguments failing on dev branch #20

Closed jrudley closed 8 years ago

jrudley commented 8 years ago

if you pass more than 1 argument, it fails. AdditionalArgs = '/XC /XN' fails

AdditionalArgs = '/XC' works

narrieta commented 8 years ago

@jrudley: We recently changed the type of AdditionalArguments to an array of strings. The assignment should look like

AdditionalArgs = @('/XC', '/XN')