Skip to content

Commit c050dee

Browse files
committed
refactor: 更正逻辑判断
1 parent dd958bc commit c050dee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/BootstrapBlazor.CssBundler/Bundler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ static void DoBundler(string bundlerFile, BundlerOptions option)
6868
continue;
6969
}
7070
using var reader = File.OpenRead(inputFile);
71-
if (IsUtf8Bom(reader))
71+
if (!IsUtf8Bom(reader))
7272
{
7373
reader.Seek(0, SeekOrigin.Begin);
7474
}

0 commit comments

Comments
 (0)