Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

The PowerShell task passes list arguments as a single parameter #255

Open
wants to merge 2 commits into
base: release/CCNet-1.8
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/core/tasks/PowerShellTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ private string Args(IIntegrationResult result)
builder.AppendArgument("-NoProfile");
builder.AppendArgument("-NonInteractive");

builder.AppendArgument("-file");
builder.AppendArgument("-Command");

if (!string.IsNullOrEmpty(Script))
{
Expand Down