Skip to content

Commit 81ac680

Browse files
committed
handle dll files only
1 parent d7509e3 commit 81ac680

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/VirtoCommerce.Platform.Modules/Local/LocalStorageModuleCatalog.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ private void CopyFile(string sourceFilePath, string targetFilePath)
317317

318318
private bool ReplaceBitwiseReason(string sourceFilePath, string targetFilePath)
319319
{
320-
if (IsManagedLibrary(targetFilePath))
320+
if (IsManagedLibrary(targetFilePath) || !sourceFilePath.EndsWith(".dll", StringComparison.InvariantCultureIgnoreCase))
321321
{
322322
return false;
323323
}

0 commit comments

Comments
 (0)