Skip to content

Commit 08cd1d0

Browse files
leefine02leefine02
authored andcommitted
1 parent b53710b commit 08cd1d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

RemoteFile/RemoteCertificateStore.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -369,10 +369,10 @@ private List<string> FindStoresLinux(string[] paths, string[] extensions, string
369369
{
370370
foreach (string fileName in fileNames)
371371
{
372-
command += (command.IndexOf("-iname") == -1 ? string.Empty : "-or ");
373-
command += $"-iname '{fileName.Trim()}";
372+
command += (command.IndexOf("-name") == -1 ? string.Empty : "-or ");
373+
command += $"-name '{fileName.Trim()}";
374374
if (extension.ToLower() == NO_EXTENSION)
375-
command += $"' ! -iname '*.*' ";
375+
command += $"' ! -name '*.*' ";
376376
else
377377
command += $".{extension.Trim()}' ";
378378
}

0 commit comments

Comments
 (0)