Skip to content

Commit

Permalink
fix(tooling): remove Arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed Nov 24, 2024
1 parent 2b35261 commit d9f3727
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 379 deletions.
157 changes: 0 additions & 157 deletions source/Nuke.Tooling.Tests/ArgumentsTest.cs

This file was deleted.

2 changes: 1 addition & 1 deletion source/Nuke.Tooling/ArgumentStringHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public string ToStringAndClear()
public Func<string, string> GetFilter()
{
var secretValues = _secretValues;
return x => secretValues.Aggregate(x, (arguments, value) => arguments.Replace(value, Arguments.Redacted));
return x => secretValues.Aggregate(x, (arguments, value) => arguments.Replace(value, "[REDACTED]"));
}
}
#endif
221 changes: 0 additions & 221 deletions source/Nuke.Tooling/Arguments.cs

This file was deleted.

0 comments on commit d9f3727

Please sign in to comment.