You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's an off-by-one index error when replacing the argument strings.
On line 140 cmdline.Replace($"${i}", param.GetValue()); in ViewModels.ExecuteCustomAction.Sure(), the source string should instead be $"${i+1}" (since the i index is zero-based but the variable names are one-based).