Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Update src/Aspire.Hosting.Docker/EnvFile.cs
  • Loading branch information
davidfowl authored Nov 1, 2025
commit cd707312c714b6dbdec646611b689d188531ec5f
2 changes: 1 addition & 1 deletion src/Aspire.Hosting.Docker/EnvFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void Add(string key, string? value, string? comment, bool onlyIfMissing =
return;
}

// Update the existing key's value
// Update the existing key's value.
for (int i = 0; i < _lines.Count; i++)
{
if (TryParseKey(_lines[i], out var lineKey) && lineKey == key)
Expand Down