mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
26 lines
747 B
C#
26 lines
747 B
C#
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
{
|
|
public class IgnoreEndsWith : ACompilationStep
|
|
{
|
|
private readonly string _postfix;
|
|
private readonly string _reason;
|
|
|
|
public IgnoreEndsWith(ACompiler compiler, string postfix) : base(compiler)
|
|
{
|
|
_postfix = postfix;
|
|
_reason = $"Ignored because path ends with {postfix}";
|
|
}
|
|
|
|
public override async ValueTask<Directive?> Run(RawSourceFile source)
|
|
{
|
|
if (!((string)source.Path).EndsWith(_postfix)) return null;
|
|
var result = source.EvolveTo<IgnoredDirectly>();
|
|
result.Reason = _reason;
|
|
return result;
|
|
}
|
|
}
|
|
}
|