Skip to content

Commit

Permalink
fix(cicd): quoting in AppVeyor generation (#1245)
Browse files Browse the repository at this point in the history
  • Loading branch information
olsh authored and matkoch committed Nov 19, 2023
1 parent a3650c0 commit c2c279e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ public override void Write(CustomFileWriter writer)
writer.WriteLine();
using (writer.WriteBlock("artifacts:"))
{
Artifacts.ForEach(x => writer.WriteLine($"- path: {x}"));
Artifacts.ForEach(x => writer.WriteLine($"- path: {x.SingleQuoteIfNeeded(disallowed: '*')}"));
}
}

Expand Down

0 comments on commit c2c279e

Please sign in to comment.