Skip to content

Commit

Permalink
Fix extra space after HELIX_WORKITEM_ID variable
Browse files Browse the repository at this point in the history
This causes an error when copy-pasted into the shell otherwise.
  • Loading branch information
akoeplinger authored Oct 9, 2023
1 parent 2c36259 commit e90991c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DevOps.Util/HelixServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ string SetVariable(string name, string value) =>
Console.WriteLine(SetVariable("HELIX_CORRELATION_PAYLOAD", correlationDir));
Console.WriteLine(SetVariable("HELIX_PYTHONPATH", "echo skipping python"));
Console.WriteLine(SetVariable("HELIX_WORKITEM_FRIENDLYNAME", workItemInfo.WorkItemId!));
Console.WriteLine(SetVariable("HELIX_WORKITEM_ID ", workItemInfo.WorkItemId!));
Console.WriteLine(SetVariable("HELIX_WORKITEM_ID", workItemInfo.WorkItemId!));
Console.WriteLine(SetVariable("HELIX_WORKITEM_PAYLOAD", itemDir));
Console.WriteLine(SetVariable("HELIX_WORKITEM_ROOT", itemDir));
Console.WriteLine(SetVariable("HELIX_WORKITEM_UPLOAD_ROOT", itemDir));
Expand Down

0 comments on commit e90991c

Please sign in to comment.