mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fixes #1330
This commit is contained in:
parent
1aa391dde9
commit
ff3f34c31d
@ -164,8 +164,7 @@ namespace Wabbajack.Common
|
||||
|
||||
public static bool operator ==(Extension a, Extension b)
|
||||
{
|
||||
// Super fast comparison because extensions are interned
|
||||
return ReferenceEquals(a._extension, b._extension);
|
||||
return string.Equals(a._extension, b._extension, StringComparison.CurrentCultureIgnoreCase);
|
||||
}
|
||||
|
||||
public static bool operator !=(Extension a, Extension b)
|
||||
|
@ -42,6 +42,25 @@ namespace Wabbajack.Test
|
||||
await utils.VerifyInstalledFile(mod, @"Data\scripts\test.pex");
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task TestCacheFileAreIgnored()
|
||||
{
|
||||
|
||||
var profile = utils.AddProfile();
|
||||
var mod = await utils.AddMod();
|
||||
var testCache = await utils.AddModFile(mod, @"Data\scripts\test.cache", 10);
|
||||
var testPex = await utils.AddModFile(mod, @"Data\scripts\test.pex", 10);
|
||||
|
||||
await utils.Configure();
|
||||
|
||||
await utils.AddManualDownload(
|
||||
new Dictionary<string, byte[]> {{"/baz/biz.pex", await testPex.ReadAllBytesAsync()}});
|
||||
|
||||
await CompileAndInstall(profile);
|
||||
|
||||
await utils.VerifyInstalledFile(mod, @"Data\scripts\test.pex");
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public async Task ExtraFilesInDownloadFolderDontStopCompilation()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user