Skip to content

Commit

Permalink
Addressed PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
SohamDas2021 committed Oct 1, 2024
1 parent 3dceb4d commit 23c6c5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ private void UpdateOrCreateSubkey(string xmlFilePath, string key, string subkey,
private void UpdateSettingsXML(string localRepositoryLocation)
{
int index = ExistingCacheLocation.IndexOf("repository", StringComparison.OrdinalIgnoreCase);
var settingsXMLPath = string.Concat(this.ExistingCacheLocation.AsSpan(0, index), "settings.xml");
var settingsXMLPath = string.Concat(ExistingCacheLocation.AsSpan(0, index), "settings.xml");
var key = "settings";
var subkey = "localRepository";

Expand Down

0 comments on commit 23c6c5b

Please sign in to comment.